xso_Neumann Subroutine

private subroutine xso_Neumann()

Uses

  • proc~~xso_neumann~~UsesGraph proc~xso_neumann xso_Neumann module~modfields modfields proc~xso_neumann->module~modfields module~modglobal modglobal proc~xso_neumann->module~modglobal decomp_2d decomp_2d module~modfields->decomp_2d

Arguments

None

Source Code

   subroutine xso_Neumann
     use modglobal, only : ie, ihc, rk3step, dt, dxi, nsv
     use modfields, only :sv0, svm
     real rk3coef
     integer n, m

     rk3coef = dt/(4.-dble(rk3step))

     do n = 1, nsv
       do m = 1, ihc
         sv0(ie + m, :, :, n) = sv0(ie, :, :, n)
         svm(ie + m, :, :, n) = svm(ie, :, :, n)
       end do
     end do

   end subroutine xso_Neumann