Skip to content

Commit

Permalink
fixed unit error on mortality_carbonflux_canopy and mortality_carbonf…
Browse files Browse the repository at this point in the history
…lux_understory
  • Loading branch information
ckoven committed Feb 22, 2017
1 parent dd04f15 commit cb812d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/clm/src/ED/main/FatesHistoryInterfaceMod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -1143,7 +1143,7 @@ subroutine update_history_dyn(this,nc,nsites,sites)
(ccohort%bmort + ccohort%hmort + ccohort%cmort + ccohort%imort + ccohort%fmort) * n_perm2*AREA
hio_canopy_mortality_carbonflux_si(io_si) = hio_canopy_mortality_carbonflux_si(io_si) + &
(ccohort%bmort + ccohort%hmort + ccohort%cmort + ccohort%imort + ccohort%fmort) * &
ccohort%b * ccohort%n * 1e3 / (1e4 * daysecs)
ccohort%b * ccohort%n * 1e3 / (1e4 * daysecs * yeardays)
!
hio_leaf_md_canopy_si_scls(io_si,scls) = hio_leaf_md_canopy_si_scls(io_si,scls) + &
ccohort%leaf_md * n_perm2 * AREA
Expand Down Expand Up @@ -1197,7 +1197,7 @@ subroutine update_history_dyn(this,nc,nsites,sites)
(ccohort%bmort + ccohort%hmort + ccohort%cmort + ccohort%imort + ccohort%fmort) * n_perm2*AREA
hio_understory_mortality_carbonflux_si(io_si) = hio_understory_mortality_carbonflux_si(io_si) + &
(ccohort%bmort + ccohort%hmort + ccohort%cmort + ccohort%imort + ccohort%fmort) * &
ccohort%b * ccohort%n * 1e3 / (1e4 * daysecs)
ccohort%b * ccohort%n * 1e3 / (1e4 * daysecs * yeardays)
!
hio_leaf_md_understory_si_scls(io_si,scls) = hio_leaf_md_understory_si_scls(io_si,scls) + &
ccohort%leaf_md * n_perm2 * AREA
Expand Down

0 comments on commit cb812d9

Please sign in to comment.