Skip to content

Commit

Permalink
Merge pull request #464 from NOAA-EMC/release/gfsda.v16.3.0_warnings
Browse files Browse the repository at this point in the history
Release/gfsda.v16.3.0 warnings
  • Loading branch information
emilyhcliu authored Aug 28, 2022
2 parents 733629e + a5101ee commit 148b7d8
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 5 deletions.
8 changes: 8 additions & 0 deletions src/gsi/stub_wrf_binary_interface.f90
Original file line number Diff line number Diff line change
Expand Up @@ -29,18 +29,26 @@ end subroutine convert_binary_mass_dummy

subroutine convert_binary_nmm_dummy(this,update_pint,ctph0,stph0,tlm0)
use kinds, only: r_kind
use constants, only: zero
implicit none
class(get_wrf_binary_interface_class), intent(inout) :: this
logical ,intent(inout) :: update_pint
real(r_kind),intent( out) :: ctph0,stph0,tlm0
ctph0 = zero
stph0 = zero
tlm0 = zero
end subroutine convert_binary_nmm_dummy

subroutine convert_nems_nmmb_dummy(this,update_pint,ctph0,stph0,tlm0)
use kinds, only: r_kind
use constants, only: zero
implicit none
class(get_wrf_binary_interface_class), intent(inout) :: this
logical ,intent(inout) :: update_pint
real(r_kind),intent( out) :: ctph0,stph0,tlm0
ctph0 = zero
stph0 = zero
tlm0 = zero
end subroutine convert_nems_nmmb_dummy

end module get_wrf_binary_interface_mod
5 changes: 4 additions & 1 deletion src/gsi/stub_wrf_netcdf_interface.f90
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,15 @@ end subroutine convert_netcdf_mass_dummy

subroutine convert_netcdf_nmm_dummy(this,update_pint,ctph0,stph0,tlm0,guess)
use kinds, only: r_single,i_kind,r_kind
use constants, only: zero
implicit none
class(convert_netcdf_class) ,intent(inout) :: this
logical ,intent(in ) :: guess
logical ,intent(inout) :: update_pint
real(r_kind),intent( out) :: ctph0,stph0,tlm0

ctph0 = zero
stph0 = zero
tlm0 = zero
end subroutine convert_netcdf_nmm_dummy

subroutine update_netcdf_mass_dummy(this)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ subroutine grads_lev(fileo,ifileo,nobs,nreal,nlev,plev,iscater,igrads, &

integer ifileo
character(ifileo) :: fileo
integer :: nobs,nreal,nlev,igrads,isubtype
integer :: nobs,nreal,nlev,igrads,isubtype,iscater
real(4),dimension(nlev) :: plev
character(10) :: levcard
real*4 :: hint
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,11 @@ subroutine grads_sfctime(fileo,ifileo,nobs,nreal,&
nlev,plev,iscater,igrads,isubtype,subtype,list,run)

use generic_list
character(ifileo) :: fileo
integer :: ifileo,nobs,nreal,nlev
character(ifileo) :: fileo
real(4),dimension(nlev) :: plev
integer :: iscater,igrdas,isubtype
! integer :: iscater,igrdas,isubtype
integer :: iscater,igrads,isubtype
character(3) :: subtype
type(list_node_t),pointer :: list
character(3) :: run
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ subroutine grads_sig(fileo,ifileo,nobs,nreal,nlev,plev,iscater,igrads,isubtype,

integer ifileo
character(ifileo) :: fileo
integer :: nobs,nreal,nlev,igrads,isubtype
integer :: nobs,nreal,nlev,igrads,isubtype,iscater
real(4),dimension(nlev) :: plev
character(3) :: subtype
type(list_node_t), pointer :: list
Expand Down

0 comments on commit 148b7d8

Please sign in to comment.