Skip to content

Commit 2fb2f5d

Browse files
committed
Fixed error in calculation of biomass_bg_ft during export of fragmented fluxes to HLM.
1 parent f128a9d commit 2fb2f5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

biogeochem/EDPhysiologyMod.F90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2301,7 +2301,7 @@ subroutine flux_into_litter_pools(nsites, sites, bc_in, bc_out)
23012301
do while(associated(currentCohort))
23022302
biomass_bg_ft(currentCohort%pft) = biomass_bg_ft(currentCohort%pft) + &
23032303
((currentCohort%bdead + currentCohort%bsw ) * (1.0_r8-EDPftvarcon_inst%allom_agb_frac(currentCohort%pft)) + &
2304-
(currentCohort%br + currentCohort%bstore )) + &
2304+
(currentCohort%br + currentCohort%bstore )) * &
23052305
(currentCohort%n / currentPatch%area)
23062306
currentCohort => currentCohort%shorter
23072307
enddo !currentCohort

0 commit comments

Comments
 (0)