Skip to content

Commit

Permalink
realistic rim, floor, ejecta
Browse files Browse the repository at this point in the history
  • Loading branch information
du254 committed Sep 11, 2023
1 parent 41c045c commit 0953f0f
Show file tree
Hide file tree
Showing 3 changed files with 188 additions and 155 deletions.
14 changes: 7 additions & 7 deletions src/globals/module_globals.f90
Original file line number Diff line number Diff line change
Expand Up @@ -278,13 +278,13 @@ module module_globals
real(DP) :: bp2_y
real(DP) :: bp3_y
real(DP) :: bp4_y
real(DP) :: slope1
real(DP),dimension(5) :: bp2_x_k_b_sigma
real(DP),dimension(5) :: bp2_y_k_b_sigma
real(DP),dimension(5) :: bp3_y_k_b_sigma
real(DP),dimension(5) :: bp4_y_k_b_sigma
real(DP),dimension(5) :: slope1_k_b_sigma
real(DP),dimension(5) :: misfit_k_b_sigma
real(DP) :: slope12
real(DP) :: misfit_k_b_sigma
real(DP),dimension(6) :: bp2_x_k_b_sigma
real(DP),dimension(6) :: bp2_y_k_b_sigma
real(DP),dimension(6) :: bp3_y_k_b_sigma
real(DP),dimension(6) :: bp4_y_k_b_sigma
real(DP),dimension(6) :: slope12_k_b_sigma
end type psdtype
!----------------------------------------------------------

Expand Down
11 changes: 4 additions & 7 deletions src/realistic/module_realistic.f90
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ end subroutine realistic_crater_topography


interface
subroutine realistic_rim(user,surf,crater,deltaMtot)
subroutine make_realistic_crater(user,surf,crater,deltaMtot)
use module_globals
use module_util
use module_crater
Expand All @@ -138,12 +138,9 @@ subroutine realistic_rim(user,surf,crater,deltaMtot)
type(surftype),dimension(:,:),intent(inout) :: surf
type(cratertype),intent(inout) :: crater
real(DP),intent(inout) :: deltaMtot
end subroutine realistic_rim
end subroutine make_realistic_crater
end interface



! Rim_crest:
interface

subroutine Calculate_am_wl_phase_from_diameter(psd_1D,amplitude,wavelength,phase)
Expand Down Expand Up @@ -180,7 +177,7 @@ subroutine Calculate_am_wl_phase_from_targetPSD(psd_1D,wavelength,psd,amplitude,
real(DP) ,dimension(:),allocatable,intent(out) :: amplitude,phase
end subroutine Calculate_am_wl_phase_from_targetPSD

subroutine Create_rim(arc_length,psd_1D,amplitude,wavelength,phase,rim_parameter)
subroutine Make_outline(arc_length,psd_1D,amplitude,wavelength,phase,rim_parameter)
use module_globals
implicit none
! in and out
Expand All @@ -190,7 +187,7 @@ subroutine Create_rim(arc_length,psd_1D,amplitude,wavelength,phase,rim_parameter
real(DP),dimension(:),intent(in) :: wavelength
real(DP),dimension(:),intent(in) :: phase
real(DP),intent(out) :: rim_parameter
end subroutine Create_rim
end subroutine Make_outline

end interface

Expand Down
Loading

0 comments on commit 0953f0f

Please sign in to comment.