Skip to content

Commit

Permalink
Fixed interface mismatches
Browse files Browse the repository at this point in the history
  • Loading branch information
daminton committed Apr 25, 2024
1 parent 766f27e commit 06a6da8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/crater/module_crater.f90
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ subroutine crater_populate(user,surf,crater,domain,prod,production_list,vdist,nt
mass,fracdone,nflux,ntotcrat,curyear,rclist)
use module_globals
implicit none
type(usertype),intent(in) :: user
type(usertype),intent(inout) :: user
type(surftype),dimension(:,:),intent(inout) :: surf
type(cratertype),intent(inout) :: crater
type(domaintype),intent(inout) :: domain
Expand Down
2 changes: 1 addition & 1 deletion src/ejecta/ejecta_emplace.f90
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ subroutine ejecta_emplace(user,surf,crater,domain,ejb,ejtble,deltaMtot,cumulativ
integer(I4B),intent(in) :: ejtble
type(ejbtype),dimension(:),intent(inout) :: ejb
real(DP),intent(in) :: deltaMtot
real(DP),dimension(:,:),allocatable,intent(out) :: cumulative_elchange
real(DP),dimension(:,:),allocatable,intent(inout) :: cumulative_elchange
integer(I4B),intent(in) :: nmeltsheet
real(DP),intent(out) :: vmeltsheet

Expand Down
2 changes: 1 addition & 1 deletion src/regolith/module_regolith.f90
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ subroutine regolith_traverse_streamtube(user,surfi,deltar,ri,rip1,eradi,erado,ne
type(surftype),intent(inout) :: surfi
real(DP),intent(in) :: deltar,ri,rip1,eradi,erado
type(regodatatype),intent(inout) :: newlayer
real(DP),intent(out) :: meltinejecta,totvol
real(DP),intent(inout) :: meltinejecta,totvol
real(DP),intent(out) :: vmare,totseb
real(SP),dimension(:),intent(inout) :: age_collector
real(DP),intent(in) :: xmints
Expand Down
2 changes: 1 addition & 1 deletion src/regolith/regolith_subpixel_streamtube.f90
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ subroutine regolith_subpixel_streamtube(user,surfi,deltar,ri,rip1,eradi,newlayer
type(surftype),intent(inout) :: surfi
real(DP),intent(in) :: deltar,ri,rip1,eradi
type(regodatatype),intent(inout) :: newlayer
real(DP),intent(out) :: meltinejecta, totvol
real(DP),intent(inout) :: meltinejecta, totvol
real(DP),intent(out) :: vmare,totseb
real(SP),dimension(:),intent(inout) :: age_collector
real(DP),intent(in) :: xmints
Expand Down

0 comments on commit 06a6da8

Please sign in to comment.