2D AMRCLAW
setaux.f90
Go to the documentation of this file.
1 subroutine setaux(mbc,mx,my,xlower,ylower,dx,dy,maux,aux)
2 
3  ! Called at start of computation before calling qinit, and
4  ! when AMR is used, also called every time a new grid patch is created.
5  ! Use to set auxiliary arrays aux(1:maux, 1-mbc:mx+mbc, 1-mbc:my+mbc).
6  ! Note that ghost cell values may need to be set if the aux arrays
7  ! are used by the Riemann solver(s).
8  !
9  ! This default version does nothing.
10 
11  implicit none
12  integer, intent(in) :: mbc,mx,my,maux
13  real(kind=8), intent(in) :: xlower,ylower,dx,dy
14  real(kind=8), intent(inout) :: aux(maux,1-mbc:mx+mbc,1-mbc:my+mbc)
15 
16 end subroutine setaux
subroutine setaux(mbc, mx, my, xlower, ylower, dx, dy, maux, aux)
Definition: setaux.f90:2