2D AMRCLAW
Functions/Subroutines
setaux.f90 File Reference

Go to the source code of this file.

Functions/Subroutines

subroutine setaux (mbc, mx, my, xlower, ylower, dx, dy, maux, aux)
 

Function/Subroutine Documentation

◆ setaux()

subroutine setaux ( integer, intent(in)  mbc,
integer, intent(in)  mx,
integer, intent(in)  my,
real(kind=8), intent(in)  xlower,
real(kind=8), intent(in)  ylower,
real(kind=8), intent(in)  dx,
real(kind=8), intent(in)  dy,
integer, intent(in)  maux,
real(kind=8), dimension(maux,1-mbc:mx+mbc,1-mbc:my+mbc), intent(inout)  aux 
)

Definition at line 2 of file setaux.f90.

Referenced by filrecur(), filval(), ginit(), prefilrecur(), preicall(), prepbigstep(), and saveqc().

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 
real(kind=8) xlower
Definition: amr_module.f90:231
real(kind=8) ylower
Definition: amr_module.f90:231
Here is the caller graph for this function: