2D AMRCLAW
b4step2.f90
Go to the documentation of this file.
1 
2 subroutine b4step2(mbc,mx,my,meqn,q,xlower,ylower,dx,dy,t,dt,maux,aux)
3 
4  ! Called before each call to step2.
5  ! Use to set time-dependent aux arrays or perform other tasks.
6  !
7  ! This default version does nothing.
8 
9  implicit none
10  integer, intent(in) :: mbc,mx,my,meqn,maux
11  real(kind=8), intent(in) :: xlower,ylower,dx,dy,t,dt
12  real(kind=8), intent(inout) :: q(meqn,1-mbc:mx+mbc,1-mbc:my+mbc)
13  real(kind=8), intent(inout) :: aux(maux,1-mbc:mx+mbc,1-mbc:my+mbc)
14 
15 end subroutine b4step2
subroutine b4step2(mbc, mx, my, meqn, q, xlower, ylower, dx, dy, t, dt, maux, aux)
Definition: b4step2.f90:2