Scheduled Downtime
On Tuesday 24 October 2023 @ 5pm MT the forums will be in read only mode in preparation for the downtime. On Wednesday 25 October 2023 @ 5am MT, this website will be down for maintenance and expected to return online later in the morning.
Normal Operations
The forums are back online with normal operations. If you notice any issues or errors related to the forums, please reach out to help@ucar.edu

How leaf area index (TLAI) is calculated from leaf carbon (leafc) in CLM5.0.06

Status
Not open for further replies.

Xueli Huo

Member
Hi all,

I have a question that how leaf area index (TLAI) is calculated from leaf carbon (leafc) in CLM5.0.06.

Any source code or document that describes the calculation process ?

Sincerely,
 

oleson

Keith Oleson
CSEG and Liaisons
Staff member
It is here in CNVegStructUpdateMod.F90:

! update the leaf area index based on leafC and SLA
! Eq 3 from Thornton and Zimmerman, 2007, J Clim, 20, 3902-3923.
if (dsladlai(ivt(p)) > 0._r8) then
tlai(p) = (slatop(ivt(p))*(exp(leafc(p)*dsladlai(ivt(p))) - 1._r8))/dsladlai(ivt(p))
else
tlai(p) = slatop(ivt(p)) * leafc(p)
end if
tlai(p) = max(0._r8, tlai(p))
 
Status
Not open for further replies.
Top