vtf-logo

src/2d/dummy-routines/ic2xx.f


c
c
c     =====================================================
       subroutine ic(maxmx,maxmy,meqn,mbc,mx,my,x,y,dx,dy,q)
c     =====================================================
       implicit double precision (a-h,o-z)
c
c      # Dummy subroutine for 2D initial conditions. 
c      # A user defined ic()-function is always required!
c
       dimension q(meqn,1-mbc:maxmx+mbc, 1-mbc:maxmy+mbc)
       dimension x(1-mbc:maxmx+mbc),y(1-mbc:maxmy+mbc)
c
       return
       end

<