Skip to content

Commit

Permalink
Fix the intent out build warnings in src/enkf/observer_fv3reg.f90.
Browse files Browse the repository at this point in the history
  • Loading branch information
BinLiu-NOAA committed Apr 9, 2024
1 parent cc0fb11 commit 9396aa1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/enkf/observer_fv3reg.f90
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@ subroutine calc_linhx(hx, dens, dhx_dx, hxpert, hx_ens, &
integer(i_kind), intent(in) :: ix, iy, it, ixp, iyp, itp
real(r_kind), intent(in) :: delx, dely, delxp, delyp, delt, deltp
type(sparr) ,intent(in ) :: dhx_dx ! dH(x)/dx |x_mean profiles
type(raggedarr) ,intent(inout) :: hxpert ! interpolated background
real(r_single) ,intent( out) :: hx_ens ! H (x_ens)
type(raggedarr) :: hxpert ! interpolated background
real(r_single) :: hx_ens ! H (x_ens)
integer(i_kind) i,j
write(6,*)'this is a dummy subroutine, running this means something wrong ,stop'
call stop2(555)
Expand Down Expand Up @@ -152,7 +152,7 @@ subroutine calc_linhx_modens(hx, dhx_dx, hxpert, hx_ens, vscale)
real(r_single) ,intent(in ) :: hx ! H(x_mean)
type(sparr) ,intent(in ) :: dhx_dx ! dH(x)/dx |x_mean profiles
type(raggedarr) ,intent(in ) :: hxpert ! interpolated background
real(r_single) ,intent( out) :: hx_ens(neigv)! H (x_ens)
real(r_single) :: hx_ens(neigv)! H (x_ens)
real(r_double),dimension(neigv,nlevs+1) ,intent(in ) :: vscale ! vertical scaling (for modulated ens)
integer(i_kind) i
write(6,*)'this is a dummy subroutine, running this means something wrong ,stop'
Expand Down

0 comments on commit 9396aa1

Please sign in to comment.