Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Removed writing of ejected melt volume as it wasn't being used
  • Loading branch information
Austin Blevins committed Feb 17, 2023
1 parent 985f49b commit 2bf4fec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/io/io_write_regotrack.f90
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ subroutine io_write_regotrack(user,surf,domain)
open(FCOMP,file=COMPFILE,status='replace',form='unformatted')
open(FAGE,file=AGEFILE,status='replace',form='unformatted')
open(FMD,file=MDFILE,status='replace',form='unformatted')
open(FEJM,file=EJMFILE,status='replace',form='unformatted')
!open(FEJM,file=EJMFILE,status='replace',form='unformatted')
open(FEJMF,file=EJMFFILE,status='replace',form='unformatted')

! First pass to get stack numbers
Expand Down Expand Up @@ -102,7 +102,7 @@ subroutine io_write_regotrack(user,surf,domain)
write(FCOMP) comp(:)
write(FAGE) age(:,:)
write(FMD) meltdist(:,:)
write(FEJM) ejm(:)
!write(FEJM) ejm(:)
write(FEJMF) ejmf(:)
deallocate(meltfrac,thickness,comp,age,meltdist,ejm,ejmf)
end do
Expand All @@ -112,7 +112,7 @@ subroutine io_write_regotrack(user,surf,domain)
close(FCOMP)
close(FAGE)
close(FMD)
close(FEJM)
!close(FEJM)
close(FEJMF)

recsize = sizeof(itmp) * user%gridsize * user%gridsize
Expand Down

0 comments on commit 2bf4fec

Please sign in to comment.