2D AMRCLAW
src2.f90
Go to the documentation of this file.
1 subroutine src2(meqn,mbc,mx,my,xlower,ylower,dx,dy,q,maux,aux,t,dt)
2 
3  ! Called to update q by solving source term equation
4  ! $q_t = \psi(q)$ over time dt starting at time t.
5  !
6  ! This default version does nothing.
7 
8  implicit none
9  integer, intent(in) :: mbc,mx,my,meqn,maux
10  real(kind=8), intent(in) :: xlower,ylower,dx,dy,t,dt
11  real(kind=8), intent(in) :: aux(maux,1-mbc:mx+mbc,1-mbc:my+mbc)
12  real(kind=8), intent(inout) :: q(meqn,1-mbc:mx+mbc,1-mbc:my+mbc)
13 
14 end subroutine src2
subroutine src2(meqn, mbc, mx, my, xlower, ylower, dx, dy, q, maux, aux, t, dt)
Definition: src2.f90:1