program driver c c Generic driver routine for claw3 c c Author: Donna Calhoun c Date : 3/20/02 c Version : To be used with Clawpack 4.0 c implicit double precision (a-h,o-z) c # set parameters for maximum array sizes used in declarations c # these must be increased for larger problems. c c parameter (maxmx = 240) parameter (maxmy = 100) parameter (maxmz = 100) parameter (mwork = 13256764) parameter (mbc = 2) parameter (meqn = 5) parameter (mwaves = 3) parameter (maux = 0) dimension q(1-mbc:maxmx+mbc, 1-mbc:maxmy+mbc, & 1-mbc:maxmz+mbc, meqn) c dimension aux(1-mbc:maxmx+mbc, 1-mbc:maxmy+mbc, c & 1-mbc:maxmz+mbc, maux) dimension mthlim(mwaves) dimension work(mwork) c call claw3ez(maxmx,maxmy,maxmz,meqn,mwaves,mbc,maux,mwork,mthlim, & q,work,aux) stop end