Skip to content

Commit

Permalink
added new function to compute critical slope angles inside new craters
Browse files Browse the repository at this point in the history
  • Loading branch information
daminton committed Nov 29, 2016
1 parent 928bced commit cb00421
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/crater/module_crater.f90
Original file line number Diff line number Diff line change
Expand Up @@ -253,4 +253,14 @@ subroutine crater_make_list(domain,prod,ntotcrat,production_list)
end subroutine crater_make_list
end interface

interface
function crater_critical_slope(user,crater,iradsq) result(critical)
use module_globals
type(usertype),intent(in) :: user
type(cratertype),intent(in) :: crater
integer(I4B),intent(in) :: iradsq
real(DP) :: critical
end function crater_critical_slope
end interface

end module

0 comments on commit cb00421

Please sign in to comment.