valout.f.html | |
Source file: valout.f | |
Directory: /home/rjl/git/rjleveque/clawpack-4.x/amrclaw/2d/lib | |
Converted: Sun May 15 2011 at 19:16:16 using clawcode2html | |
This documentation file will not reflect any later changes in the source file. |
c c ----------------------------------------------------- c subroutine valout (lst, lend, time, nvar, naux) c implicit double precision (a-h,o-z) character*10 matname1, matname2, matname3 c # Output the results for a general system of conservation laws c # in 2 dimensions c c # Write the results to the file fort.q c # Use format required by matlab script plotclaw2.m or Python tools c c # set outaux = .true. to also output the aux arrays to fort.a include "call.i" logical outaux iadd(i,j,ivar) = loc + i - 1 + mitot*((ivar-1)*mjtot+j-1) iaddaux(i,j,ivar) = locaux + i - 1 + mitot*((ivar-1)*mjtot+j-1) c outaux = .false. c ### NCAR graphics output if (ncarout) then call basic (time, lst, lend ) c write(pltunit1,100) nvar 100 format(10h*VALS ,i10) c level = lst 10 if (level .gt. lend) go to 60 mptr = lstart(level) 20 if (mptr .eq. 0) go to 50 nx = node(ndihi,mptr)-node(ndilo,mptr) + 1 ny = node(ndjhi,mptr)-node(ndjlo,mptr) + 1 mitot = nx + 2*nghost mjtot = ny + 2*nghost loc = node(store1,mptr) call outvar(alloc(loc),mitot,mjtot,nvar,mptr,nghost) mptr = node(levelptr,mptr) go to 20 50 continue level = level + 1 go to 10 c endif 60 continue c ### MATLAB/Python graphics output c c if (matlabout) then c ### make the file names and open output files matname1 = 'fort.qxxxx' matname2 = 'fort.txxxx' matname3 = 'fort.axxxx' matunit1 = 50 matunit2 = 60 matunit3 = 70 nstp = matlabu do 55 ipos = 10, 7, -1 idigit = mod(nstp,10) matname1(ipos:ipos) = char(ichar('0') + idigit) matname2(ipos:ipos) = char(ichar('0') + idigit) matname3(ipos:ipos) = char(ichar('0') + idigit) nstp = nstp / 10 55 continue open(unit=matunit1,file=matname1,status='unknown', . form='formatted') level = lst ngrids = 0 c65 if (level .gt. lfine) go to 90 65 if (level .gt. lend) go to 90 mptr = lstart(level) 70 if (mptr .eq. 0) go to 80 ngrids = ngrids + 1 nx = node(ndihi,mptr) - node(ndilo,mptr) + 1 ny = node(ndjhi,mptr) - node(ndjlo,mptr) + 1 loc = node(store1, mptr) locaux = node(storeaux,mptr) mitot = nx + 2*nghost mjtot = ny + 2*nghost if (ny.gt.1) then write(matunit1,1001) mptr, level, nx, ny else c # output in 1d format if ny=1: write(matunit1,1003) mptr, level, nx endif 1001 format(i5,' grid_number',/, & i5,' AMR_level',/, & i5,' mx',/, & i5,' my') 1003 format(i5,' grid_number',/, & i5,' AMR_level',/, & i5,' mx') xlow = rnode(cornxlo,mptr) ylow = rnode(cornylo,mptr) if (ny.gt.1) then write(matunit1,1002) & xlow,ylow,hxposs(level),hyposs(level) else write(matunit1,1004) & xlow,hxposs(level) endif 1002 format(e18.8,' xlow', /, & e18.8,' ylow', /, & e18.8,' dx', /, & e18.8,' dy',/) 1004 format(e18.8,' xlow', /, & e18.8,' dx', /) do j = nghost+1, mjtot-nghost do i = nghost+1, mitot-nghost do ivar=1,nvar if (dabs(alloc(iadd(i,j,ivar))) .lt. 1d-90) then alloc(iadd(i,j,ivar)) = 0.d0 endif enddo write(matunit1,109) (alloc(iadd(i,j,ivar)), ivar=1,nvar) enddo write(matunit1,*) ' ' enddo 109 format(4e26.16) mptr = node(levelptr, mptr) go to 70 80 level = level + 1 go to 65 90 continue if (outaux) then c # output aux array to fort.aXXXX open(unit=matunit3,file=matname3,status='unknown', . form='formatted') level = lst ngrids = 0 165 if (level .gt. lfine) go to 190 mptr = lstart(level) 170 if (mptr .eq. 0) go to 180 ngrids = ngrids + 1 nx = node(ndihi,mptr) - node(ndilo,mptr) + 1 ny = node(ndjhi,mptr) - node(ndjlo,mptr) + 1 loc = node(store1, mptr) locaux = node(storeaux,mptr) mitot = nx + 2*nghost mjtot = ny + 2*nghost if (ny.gt.1) then write(matunit3,1001) mptr, level, nx, ny else c # output in 1d format if ny=1: write(matunit3,1003) mptr, level, nx endif xlow = rnode(cornxlo,mptr) ylow = rnode(cornylo,mptr) if (ny.gt.1) then write(matunit3,1002) & xlow,ylow,hxposs(level),hyposs(level) else write(matunit3,1004) & xlow,hxposs(level) endif do j = nghost+1, mjtot-nghost do i = nghost+1, mitot-nghost do ivar=1,naux if (dabs(alloc(iaddaux(i,j,ivar))) .lt. 1d-90) then alloc(iaddaux(i,j,ivar)) = 0.d0 endif enddo write(matunit3,109) (alloc(iaddaux(i,j,ivar)), & ivar=1,naux) enddo write(matunit3,*) ' ' enddo mptr = node(levelptr, mptr) go to 170 180 level = level + 1 go to 165 190 continue close(unit=matunit3) endif !# end outputting aux array open(unit=matunit2,file=matname2,status='unknown', . form='formatted') if (ny.gt.1) then ndim = 2 else c # special case where 2d AMR is used for a 1d problem c # and we want to use 1d plotting routines ndim = 1 endif write(matunit2,1000) time,nvar,ngrids,naux,ndim 1000 format(e18.8,' time', /, & i5,' meqn'/, & i5,' ngrids'/, & i5,' naux'/, & i5,' ndim'/,/) c write(6,601) matlabu,time 601 format('AMRCLAW: Frame ',i4, & ' output files done at time t = ', d12.6,/) matlabu = matlabu + 1 close(unit=matunit1) close(unit=matunit2) endif return end