Skip to content

Commit 567853f

Browse files
committed
Converting %gscan to %g_sb_laweight, had missed some instances. fixed.
1 parent 33bb8d9 commit 567853f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

biogeochem/EDCohortDynamicsMod.F90

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ subroutine nan_cohort(cc_p)
241241
currentCohort%br = nan ! fine root biomass: kGC per indiv
242242
currentCohort%lai = nan ! leaf area index of cohort m2/m2
243243
currentCohort%sai = nan ! stem area index of cohort m2/m2
244-
currentCohort%gscan = nan ! Stomatal resistance of cohort.
244+
currentCohort%g_sb_laweight = nan ! Total leaf conductance of cohort (stomata+blayer) weighted by leaf-area [m/s]*[m2]
245245
currentCohort%canopy_trim = nan ! What is the fraction of the maximum leaf biomass that we are targeting? :-
246246
currentCohort%leaf_cost = nan ! How much does it cost to maintain leaves: kgC/m2/year-1
247247
currentCohort%excl_weight = nan ! How much of this cohort is demoted each year, as a proportion of all cohorts:-
@@ -362,7 +362,7 @@ subroutine zero_cohort(cc_p)
362362
currentcohort%npp_acc_hold = 0._r8
363363
currentcohort%gpp_acc_hold = 0._r8
364364
currentcohort%dmort = 0._r8
365-
currentcohort%gscan = 0._r8
365+
currentcohort%g_sb_laweight = 0._r8
366366
currentcohort%treesai = 0._r8
367367
currentCohort%lmort_direct = 0._r8
368368
currentCohort%lmort_infra = 0._r8
@@ -1112,7 +1112,7 @@ subroutine copy_cohort( currentCohort,copyc )
11121112
n%br = o%br
11131113
n%lai = o%lai
11141114
n%sai = o%sai
1115-
n%gscan = o%gscan
1115+
n%g_sb_laweight = o%g_sb_laweight
11161116
n%leaf_cost = o%leaf_cost
11171117
n%canopy_layer = o%canopy_layer
11181118
n%canopy_layer_yesterday = o%canopy_layer_yesterday

biogeophys/FatesPlantRespPhotosynthMod.F90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -616,7 +616,7 @@ subroutine FatesPlantRespPhotosynthDrive (nsites, sites,bc_in,bc_out,dtime)
616616
! Note that currentCohort%g_sb_laweight is weighted by the leaf area
617617
! of each cohort and has units of [m/s] * [m2 leaf]
618618

619-
g_sb_leaves = g_sb_leaves + currentCohort%g_sb_laweighted
619+
g_sb_leaves = g_sb_leaves + currentCohort%g_sb_laweight
620620

621621
! Accumulate the total effective leaf area from all cohorts
622622
! in this patch. Normalize by canopy area outside the loop

0 commit comments

Comments
 (0)