Skip to content

Commit

Permalink
Overhauled crater formation routine. All raised rims are now part of …
Browse files Browse the repository at this point in the history
…the ejecta blanket
  • Loading branch information
daminton committed Feb 9, 2017
1 parent 2cf4bd6 commit 6347889
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/ejecta/ejecta_distance_estimate.f90
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,7 @@ subroutine ejecta_distance_estimate(user,crater,domain,ejdis_estimate)
! Extrapolate in logspace out to the minimum thickness
slope = log(lrad2 / lrad1) / log(thick2 / thick1)
ejdis_estimate = exp(slope * log(domain%small / thick1) + log(lrad1))
if (.not.user%discontinuous) then
ejdis_estimate = min(ejdis_estimate, 2.3_DP * crater%frad**(1.006_DP))
end if
ejdis_estimate = min(ejdis_estimate, crater%fcrat * user%ejecta_truncation)

return
end subroutine ejecta_distance_estimate

0 comments on commit 6347889

Please sign in to comment.