Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…d_sphere into HEAD
  • Loading branch information
climbfuji committed Aug 6, 2020
2 parents 664d0dc + 8b59ebc commit 3344224
Show file tree
Hide file tree
Showing 9 changed files with 296 additions and 6,527 deletions.
2 changes: 1 addition & 1 deletion makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ endif

LIBRARY = libfv3core.a

FFLAGS += -I$(FMS_DIR) -I../gfsphysics -I../ipd -I../io
FFLAGS += -I$(FMS_DIR) -I../gfsphysics -I../ipd -I../io -I.

SRCS_f =

Expand Down
2 changes: 1 addition & 1 deletion model/fv_control.F90
Original file line number Diff line number Diff line change
Expand Up @@ -996,7 +996,7 @@ subroutine read_namelist_fv_grid_nml
! Read Main namelist
read (f_unit,fv_grid_nml,iostat=ios)
ierr = check_nml_error(ios,'fv_grid_nml')
rewind (f_unit)
call close_file (f_unit)
#endif
call write_version_number ( 'FV_CONTROL_MOD', version )
unit = stdlog()
Expand Down
636 changes: 289 additions & 347 deletions model/fv_regional_bc.F90

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion model/multi_gases.F90
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ module multi_gases_mod
use constants_mod, only: rdgas, rvgas, cp_air
use fv_mp_mod, only: is_master
use mpp_mod, only: stdlog, input_nml_file
use fms_mod, only: check_nml_error
use fms_mod, only: check_nml_error, open_namelist_file, close_file


implicit none
Expand Down
5 changes: 2 additions & 3 deletions tools/external_ic.F90
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,6 @@ subroutine get_nggps_ic (Atm, fv_domain, dt_atmos )
call get_data_source(source,Atm%flagstruct%regional)
if (trim(source) == source_fv3gfs) then
call mpp_error(NOTE, "READING FROM REGRIDDED FV3GFS NEMSIO FILE")
levp = 65
endif
!
!--- read in ak and bk from the gfs control file using fms_io read_data ---
Expand Down Expand Up @@ -810,15 +809,15 @@ subroutine get_nggps_ic (Atm, fv_domain, dt_atmos )
Atm%gridstruct%dxc, Atm%gridstruct%dyc, Atm%gridstruct%sin_sg, &
Atm%flagstruct%n_zs_filter, cnst_0p20*Atm%gridstruct%da_min, &
.false., oro_g, Atm%gridstruct%bounded_domain, &
Atm%domain, Atm%bd)
Atm%domain, Atm%bd)
if ( is_master() ) write(*,*) 'Warning !!! del-2 terrain filter has been applied ', &
Atm%flagstruct%n_zs_filter, ' times'
else if( Atm%flagstruct%nord_zs_filter == 4 ) then
call del4_cubed_sphere(Atm%npx, Atm%npy, Atm%phis, Atm%gridstruct%area_64, &
Atm%gridstruct%dx, Atm%gridstruct%dy, &
Atm%gridstruct%dxc, Atm%gridstruct%dyc, Atm%gridstruct%sin_sg, &
Atm%flagstruct%n_zs_filter, .false., oro_g, &
Atm%gridstruct%bounded_domain, &
Atm%gridstruct%bounded_domain, &
Atm%domain, Atm%bd)
if ( is_master() ) write(*,*) 'Warning !!! del-4 terrain filter has been applied ', &
Atm%flagstruct%n_zs_filter, ' times'
Expand Down
2 changes: 1 addition & 1 deletion tools/fv_diagnostics.F90
Original file line number Diff line number Diff line change
Expand Up @@ -1549,7 +1549,7 @@ subroutine fv_diag(Atm, zvir, Time, print_freq)
isc, iec, jsc, jec, 0, npz, 1.)
call prt_maxmin('Bottom DZ (m)', Atm(n)%delz(isc:iec,jsc:jec,npz), &
isc, iec, jsc, jec, 0, 1, 1.)
! call prt_maxmin('Top DZ (m)', Atm(n)%delz(is:ie,js:jec,1), &
! call prt_maxmin('Top DZ (m)', Atm(n)%delz(isc:iec,jsc:jec,1), &
! isc, iec, jsc, jec, 0, 1, 1.)
endif

Expand Down
Loading

0 comments on commit 3344224

Please sign in to comment.