-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added new function to compute critical slope angles inside new craters
- Loading branch information
Showing
1 changed file
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,36 @@ | ||
| ! Project : CTEM | ||
| ! Language : Fortran 2003 | ||
| ! | ||
| ! Description : Forms the maximum slope for the initial crater morphology | ||
| ! | ||
| ! | ||
| ! Input | ||
| ! Arguments : | ||
| ! | ||
| ! Output | ||
| ! Arguments : | ||
| ! | ||
| ! | ||
| ! Notes : | ||
| ! | ||
| !********************************************************************************************************************************** | ||
|
|
||
|
|
||
| function crater_critical_slope(user,crater,iradsq) result(critical) | ||
| use module_globals | ||
| use module_util | ||
| use module_crater, EXCEPT_THIS_ONE => crater_form_exterior_func | ||
| implicit none | ||
|
|
||
| ! Arguments | ||
| type(usertype),intent(in) :: user | ||
| type(cratertype),intent(in) :: crater | ||
| integer(I4B),intent(in) :: iradsq | ||
| real(DP) :: critical | ||
|
|
||
| ! Internal variables | ||
|
|
||
| critical = CRITSLP | ||
|
|
||
| end function crater_critical_slope | ||
|
|