Skip to content

Commit

Permalink
fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
nickywright authored Aug 26, 2022
1 parent f658b58 commit dd372bb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

# where $sedgrid and $agegrid are your present-day sediment thickness and agegrid.

# note: check lines 269/270 to see if it's calculating rate or thickness...
# note: check lines 273/274 to see if it's calculating rate or thickness...

# ---

Expand Down Expand Up @@ -270,7 +270,7 @@ def average_sedimentation_rate(
if age < 1:
age = 1
# Decompact the sediment thickness and divide by ocean floor age.
average_sedimentation_rate = decompat(thickness, surface_porosity, porosity_exp_decay) / age. # decompacted sediment rate
average_sedimentation_rate = decompat(thickness, surface_porosity, porosity_exp_decay) / age # decompacted sediment rate
# average_sedimentation_rate = decompat(thickness, surface_porosity, porosity_exp_decay) # decompacted sediment thickness
lon_lat_average_sedimentation_rate_list.append((lon, lat, average_sedimentation_rate))

Expand Down

0 comments on commit dd372bb

Please sign in to comment.