Skip to content

Commit

Permalink
Added size filter for collateral damage mortality.
Browse files Browse the repository at this point in the history
  • Loading branch information
rgknox committed Sep 22, 2017
1 parent c55cac5 commit 6d210ea
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions biogeochem/EDLoggingMortalityMod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -161,12 +161,18 @@ subroutine LoggingMortality_frac( pft_i, dbh, lmort_logging,lmort_collateral,lmo

if (dbh >= logging_dbhmin ) then
lmort_logging = logging_direct_frac * adjustment
lmort_collateral = logging_collateral_frac * adjustment
else
lmort_logging = 0.0_r8
lmort_logging = 0.0_r8
lmort_collateral = 0.0_r8
end if
lmort_collateral = logging_collateral_frac * adjustment

lmort_infra = logging_mechanical_frac * adjustment
!damage rates for size class < & > threshold_size need to be specified seperately

! Collateral damage to smaller plants below the direct logging size threshold
! will be applied via "understory_death" via the disturbance algorithm

else
lmort_logging = 0.0_r8
lmort_collateral = 0.0_r8
Expand Down

0 comments on commit 6d210ea

Please sign in to comment.