Skip to content

Commit

Permalink
Fix units for FATES_CROWNAREA_CANOPY_SZ and FATES_CROWNAREA_USTORY_SZ.
Browse files Browse the repository at this point in the history
This addresses issue NGEET#1126
  • Loading branch information
mpaiao committed Dec 6, 2023
1 parent bf99977 commit 0ab1f80
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main/FatesHistoryInterfaceMod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -3392,7 +3392,7 @@ subroutine update_history_dyn(this,nc,nsites,sites,bc_in)
hio_trimming_canopy_si_scls(io_si,scls) = hio_trimming_canopy_si_scls(io_si,scls) + &
ccohort%n * ccohort%canopy_trim / m2_per_ha
hio_crown_area_canopy_si_scls(io_si,scls) = hio_crown_area_canopy_si_scls(io_si,scls) + &
ccohort%c_area / m2_per_ha
ccohort%c_area * AREA_INV
hio_gpp_canopy_si_scpf(io_si,scpf) = hio_gpp_canopy_si_scpf(io_si,scpf) + &
n_perm2*ccohort%gpp_acc_hold / days_per_year / sec_per_day
hio_ar_canopy_si_scpf(io_si,scpf) = hio_ar_canopy_si_scpf(io_si,scpf) + &
Expand Down Expand Up @@ -3543,7 +3543,7 @@ subroutine update_history_dyn(this,nc,nsites,sites,bc_in)
hio_trimming_understory_si_scls(io_si,scls) = hio_trimming_understory_si_scls(io_si,scls) + &
ccohort%n * ccohort%canopy_trim / m2_per_ha
hio_crown_area_understory_si_scls(io_si,scls) = hio_crown_area_understory_si_scls(io_si,scls) + &
ccohort%c_area / m2_per_ha
ccohort%c_area * AREA_INV
hio_gpp_understory_si_scpf(io_si,scpf) = hio_gpp_understory_si_scpf(io_si,scpf) + &
n_perm2*ccohort%gpp_acc_hold / days_per_year / sec_per_day
hio_ar_understory_si_scpf(io_si,scpf) = hio_ar_understory_si_scpf(io_si,scpf) + &
Expand Down

0 comments on commit 0ab1f80

Please sign in to comment.