Albedo Computation
Fractioning for bare soil, vegetation and snow
The land surface in ORCHIDEE is represented by 13 plant functional types (PFTs), including bare soil (PFT1), that can co-exist in any grid cell. The PFT distribution is described by yearly PFT maps, defining the maximum possible fraction of each vegetation type at each pixel (
fracmax,pft), so that
fracveg=13∑pft=1fracmax,pft≤1
The rest fraction of this distribution (if present) is considered as non-biological fraction (e.g. ice, permanent snow, etc.):
fracnobio=1−13∑pft=1fracmax,pft
The actual vegetation fractions for each vegetated PFT (PFT2-PFT13) are calculated at each time step as an exponention function of the simulated leaf area index (LAI):
fracpft=(1−exp(−LAIpft))⋅fracmax,pft
The bare soil fraction (PFT1) then can be found as:
fracbs=13∑pft=1fracmax,pft−13∑pft=2fracpft
The fraction of snow on vegetated surfaces is calculated in the explicit snow scheme from the simulated snow depth (
dsnow) and snow density (
ρsnow) as:
fracsnow,veg=tanh50⋅dsnow0.025⋅ρsnow
Whereas the fraction of snow on non-biological surfaces is calculated using simulated snow mass (
msnow in kg/m
2) and two fixed parameters — critical snow depth (
dsnow,cri) and snow density (
ρsnow,cri):
fracsnow,nobio=min(1,max(0,msnow)max(0,msnow)+dsnow,cri⋅ρsnow,cri)
Albedo parametrization
The overall albedo for the land surface is calculated by parameterizing the albedo coefficients for each land surface compartment (bare soil, vegetation types, non-biological surace, plus the snow cover for any of the land surface type):
albedo=fracveg[(1−fracsnow,veg)⋅albveg+fracsnow,veg⋅albsnow,veg]+
+fracnobio[(1−fracsnow,nobio)⋅albnobio+fracsnow,nobio⋅albsnow,nobio)]
Where the vegetation albedo (
albveg) is defined as the superposition of the preset albedo coefficients for bare soil (
albbs) and leaf albedo for each vegetation type (
albleaf), weighted by their fractions:
albveg=fracbs⋅albbs+13∑pft=2fracpft⋅albleaf,pft
The snow albedo is parameterized for each vegetation type with the two coefficients — aged snow albedo (
albsnow,aged), describing the minimum snow albedo value for dirty old snow, and snow albedo decay rate (
albsnow,dec), used to calculate the snow albedo as the function of the simulated snow age (
agesnow):
albsnow,veg=13∑pft=1fracmax,pft⋅[albsnow,aged,pft+albsnow,dec,pft⋅exp(−agesnow/tcstsnow)]13∑pft=1fracmax,pft
Where
tcstsnow is the time constant of the albedo decay of snow. The snow albedo for non-biological surfaces is calculated using the same principle with the coefficients for bare soil (PFT1):
albsnow,nobio=albsnow,aged,1+albsnow,dec,1⋅exp(−agesnow/tcstsnow)
Finally, the two additional parameters are used in controlling the snow age evolution — the maximum period of snow aging (
agesnow,max) and the transformation time constant for snow (
transsnow), both used in calculating the snow age at each time step of the model simulations:
agesnow,i+1=(agesnow,i+(1−agesnow,i/agesnow,max)⋅dt)⋅exp(−precipsnow/transsnow)
Where
precipsnow is the snow precipitation content falled during the time interval
dt.