qinit.f.html CLAWPACK  
 Source file:   qinit.f
 Directory:   /Users/rjl/clawpack_src/clawpack_master/amrclaw/examples/advection_2d_inflow
 Converted:   Mon Feb 19 2024 at 17:58:02   using clawcode2html
 This documentation file will not reflect any later changes in the source file.

 
c     =====================================================
      subroutine qinit(meqn,mbc,mx,my,xlower,ylower,
     &     dx,dy,q,maux,aux)
c     =====================================================
c
c     # Set initial conditions for q.
c     # Sample scalar equation with data that is piecewise constant with
c     # q = 1.0  if  0.1 < x < 0.6   and   0.1 < y < 0.6
c     #     0.1  otherwise
c
      implicit double precision (a-h,o-z)
      dimension q(meqn, 1-mbc:mx+mbc, 1-mbc:my+mbc)
      dimension aux(maux, 1-mbc:mx+mbc, 1-mbc:my+mbc)

c     # set concentration profile
c     ---------------------------
      do 20 j=1,my
         yj = ylower + (j-0.5d0)*dy
         do 20 i=1,mx
            xi = xlower + (i-0.5d0)*dx
            q(1,i,j) = qtrue(xi,yj,0.d0)
   20    continue

      return
      end