Skip to content

Commit

Permalink
Merge pull request NCAR#3 from JCSDA-internal/bugfix/pgi
Browse files Browse the repository at this point in the history
Bugfix/pgi
  • Loading branch information
danholdaway committed May 7, 2021
2 parents b63e4cc + 358a9e2 commit d717514
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tools/external_ic.F90
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ subroutine get_nggps_ic (Atm, fv_domain, dt_atmos )
!> Namelist variables
!> filtered_terrain - use orography maker filtered terrain mapping
#ifdef __PGI
use GFS_restart, only : GFS_restart_type
!! use GFS_restart, only : GFS_restart_type

implicit none
#endif
Expand Down Expand Up @@ -1390,7 +1390,7 @@ end subroutine get_ncep_ic
subroutine get_ecmwf_ic( Atm, fv_domain )

#ifdef __PGI
use GFS_restart, only : GFS_restart_type
!! use GFS_restart, only : GFS_restart_type

implicit none
#endif
Expand Down
4 changes: 2 additions & 2 deletions tools/fv_diagnostics.F90
Original file line number Diff line number Diff line change
Expand Up @@ -3695,7 +3695,7 @@ subroutine range_check_3d(qname, q, is, ie, js, je, n_g, km, pos, q_low, q_hi, b
if (present(Time)) then
call get_date(Time, year, month, day, hour, minute, second)
if (master) write(*,999) year, month, day, hour, minute, second
999 format(' Range violation on: ', I4, '/', I02, '/', I02, ' ', I02, ':', I02, ':', I02)
999 format(' Range violation on: ', I4, '/', I2, '/', I2, ' ', I2, ':', I2, ':', I2)
endif
if ( present(bad_range) ) then
bad_range = .true.
Expand Down Expand Up @@ -3760,7 +3760,7 @@ subroutine range_check_2d(qname, q, is, ie, js, je, n_g, pos, q_low, q_hi, bad_r
if (present(Time)) then
call get_date(Time, year, month, day, hour, minute, second)
if (master) write(*,999) year, month, day, hour, minute, second
999 format(' Range violation on: ', I4, '/', I02, '/', I02, ' ', I02, ':', I02, ':', I02)
999 format(' Range violation on: ', I4, '/', I2, '/', I2, ' ', I2, ':', I2, ':', I2)
endif
if ( present(bad_range) ) then
bad_range = .true.
Expand Down

0 comments on commit d717514

Please sign in to comment.