Skip to content

Commit

Permalink
Added io_read_porotrack and io_write_porotrack.
Browse files Browse the repository at this point in the history
  • Loading branch information
mhirabay committed Dec 29, 2016
1 parent c135716 commit d0c76e1
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/io/module_io.f90
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,15 @@ subroutine io_read_regotrack(user,surf)
end subroutine io_read_regotrack
end interface

interface
subroutine io_read_porotrack(user,surf)
use module_globals
implicit none
type(usertype),intent(in) :: user
type(surftype),dimension(:,:),intent(out) :: surf
end subroutine io_read_porotrack
end interface

interface
subroutine io_write_surf(user,surf)
use module_globals
Expand All @@ -84,6 +93,15 @@ subroutine io_write_regotrack(user,surf)
end subroutine io_write_regotrack
end interface

interface
subroutine io_write_porotrack(user,surf)
use module_globals
implicit none
type(usertype),intent(in) :: user
type(surftype),dimension(:,:),intent(in) :: surf
end subroutine io_write_porotrack
end interface

interface
subroutine io_crater_profile(user,surf)
use module_globals
Expand Down

0 comments on commit d0c76e1

Please sign in to comment.