@@ -46,7 +46,7 @@ subroutine stepgrid(q,fm,fp,gm,gp,mitot,mjtot,mbc,dt,dtnew,dx,dy,
4646 dimension work(mwork)
4747
4848 logical debug, dump
49- data debug/ .false . / , dump/ .false . /
49+ data debug/ .true . / , dump/ .true . /
5050c
5151c # set tcom = time. This is in the common block comxyt that could
5252c # be included in the Riemann solver, for example, if t is explicitly
@@ -60,9 +60,8 @@ subroutine stepgrid(q,fm,fp,gm,gp,mitot,mjtot,mbc,dt,dtnew,dx,dy,
6060 write (outunit,* )" at start of stepgrid: dumping grid " ,mptr
6161 do i = 1 , mitot
6262 do j = 1 , mjtot
63- write (outunit,545 ) i,j,(q(i,j,ivar),ivar= 1 ,nvar),
64- . aux(i,j,1 ),aux(i,j,8 ),aux(i,j,9 )
65- 545 format (2i4 ,4e15 .7 ,/ ,8x ,3e15 .7 ,/ ,8x ,3e15 .7 )
63+ write (outunit,545 ) i,j,(q(i,j,ivar),ivar= 1 ,nvar)
64+ 545 format (2i4 ,7e15 .7 )
6665 end do
6766 end do
6867 endif
@@ -375,23 +374,11 @@ subroutine stepgrid(q,fm,fp,gm,gp,mitot,mjtot,mbc,dt,dtnew,dx,dy,
375374 write (outunit,* )" at end of stepgrid: dumping grid " ,mptr
376375 do i = 1 , mitot
377376 do j = 1 , mjtot
378- write (outunit,545 ) i,j,(q(i,j,ivar),ivar= 1 ,nvar),
379- . aux(i,j,1 ),aux(i,j,8 ),aux(i,j,9 )
377+ write (outunit,545 ) i,j,(q(i,j,ivar),ivar= 1 ,nvar)
380378 end do
381379 end do
382380 endif
383381
384- c
385- !-- if (dump) then
386- !-- write (* ,* )" at end of stepgrid: dumping grid " ,mptr
387- !-- do i = 1 , mitot
388- !-- do j = 1 , mjtot
389- !-- c write (outunit,545 ) i,j,(q(i,j,ivar),ivar= 1 ,nvar)
390- !-- write (* ,545 ) i,j,(q(i,j,ivar),ivar= 1 ,nvar)
391- !-- end do
392- !-- end do
393- !-- endif
394- c
395382 return
396383 end
397384
0 commit comments