2D AMRCLAW
Functions/Subroutines
src2.f90 File Reference

Go to the source code of this file.

Functions/Subroutines

subroutine src2 (meqn, mbc, mx, my, xlower, ylower, dx, dy, q, maux, aux, t, dt)
 

Function/Subroutine Documentation

◆ src2()

subroutine src2 ( integer, intent(in)  meqn,
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,
real(kind=8), dimension(meqn,1-mbc:mx+mbc,1-mbc:my+mbc), intent(inout)  q,
integer, intent(in)  maux,
real(kind=8), dimension(maux,1-mbc:mx+mbc,1-mbc:my+mbc), intent(in)  aux,
real(kind=8), intent(in)  t,
real(kind=8), intent(in)  dt 
)
Parameters
[in]mbcCalled to update q by solving source term equation $q_t = (q)$ over time dt starting at time t.

This default version does nothing.

Parameters
[in]mxCalled to update q by solving source term equation $q_t = (q)$ over time dt starting at time t.

This default version does nothing.

Parameters
[in]myCalled to update q by solving source term equation $q_t = (q)$ over time dt starting at time t.

This default version does nothing.

Parameters
[in]meqnCalled to update q by solving source term equation $q_t = (q)$ over time dt starting at time t.

This default version does nothing.

Parameters
[in]mauxCalled to update q by solving source term equation $q_t = (q)$ over time dt starting at time t.

This default version does nothing.

Definition at line 2 of file src2.f90.

Referenced by stepgrid(), and stepgrid_dimsplit().

2 
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 
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: