Skip to content

Commit

Permalink
Merge pull request #39 from fastscape-lem/FixFluxes
Browse files Browse the repository at this point in the history
Fixed bug in estimating erosional flux (contribution from Marine.f90 …
  • Loading branch information
jeanbraun authored Jun 30, 2020
2 parents c231a67 + 23c7de8 commit 28c6afc
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/Marine.f90
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,9 @@ subroutine Marine()
!h=ht+dh
etot=etot+ht-h
erate=erate+(ht-h)/dt
where (h.lt.sealevel) Sedflux=0.d0
where (h.lt.sealevel) etot=0.d0
where (h.lt.sealevel) erate=0.d0

! set the silt fraction in continent
where (h.ge.sealevel+1.d-3) Fmix=0.d-1
Expand Down

0 comments on commit 28c6afc

Please sign in to comment.