bioenergy - PIK-LPJmL/LPJmL GitHub Wiki
[[TOC]]
Three biomass functional types (BFTs) were implemented in LPJmL (one fast-growing C4 grass, a temperate and a tropical tree) to allow the simulation of dedicated biomass plantations. These BFTs are generic representations of some of the most promising types of crops for the production of 2nd generation biofuels, biomaterials, or energy (possibly in combination with CCS). Their parametrization is largely identical to their natural PFT equivalents “C4 perennial grass”, “temperate broadleaved summergreen tree” and “tropical broadleaved raingreen tree” [Sitch et al., 2003]. Table 1 shows the modified and original parameter values. Increased transpiration rates (Emax) are based on recent measurements that report higher maximum rates of up to 8 mm per day during the growing season [Allen et al., 1999, Beale et al., 1999, Hall et al., 1998, Tricker et al., 2009]. The regular arrangement of crops on plantations improves the overall light availability for individual plants. Consequently, the relevant parameter ?a for CFTs in LPJmL is higher compared to PFTs in natural vegetation [Bondeau et al., 2007]. The same logic was applied to the newly implemented BFTs. Some varieties of C4 grass species used as energy crops can maintain high rates of photosynthesis at low ambient temperatures [Naidu et al., 2003] and therefore the C4 BFT has a smaller lower limit for photosynthesis than the C4 PFT.
Table 1: Overview of modified BFT parameter values and constants in model equations. Original values are in brackets.
Parameters describing biomass plantation management are given in table 2. Woody energy crops are simulated as short rotation coppice (SRC) in which young tree stems are regularly cut down to near ground level at short intervals. An established root system at the time of harvest and nutrient storage in roots and stumps enables high yielding varieties of poplar, willow and eucalypts used for SRC to regrow vigorously in subsequent years. Several harvest cycles are possible until plantations need to replanted after 40 years. Mortality and fire occurrence on plantations are also reduced compared to natural vegetation, because it is assumed that effective pest and fire control will be established on modern biomass plantations.
Table 2: Model parameters describing biomass plantation management.
BFT | Corresponding biomass crop | Harvest interval | Plant density per hectare |
---|---|---|---|
Temperate biomass tree | Poplar, Willow | 8 years | 8000 |
Tropical biomass tree | Eucalyptus | 8 years | 5000 |
C4 biomass grass | Miscanthus, Switchgrass | (Multiple) annual harvest | n.a. |
Coppicing of trees on biomass plantations is described in coppice_tree.c called from annual_biomass_tree.c when the time since the last harvest equals the rotation period defined for each BFT in pft.par. During harvest 90% of the heartwood and 65% of the sapwood are transferred to the harvest pool and the plants carbon pools reduced accordingly. Leaf carbon goes into the litter pool. Fine root pools remain unchanged and allow fast regrowth in subsequent years. Allometry is called after harvest to adjust tree height and crown area.
#define HARVEST_EFFICIENCY 0.9
/* Sapwood reduction needs to be lower to avoid fatal numerical instabilities in allometry */
/* Makes sense as part (~30 %) of sapwood carbon is located underground */
#define HARVEST_EFFICIENCY_SAP 0.65
Real coppice_tree(Pft *pft)
{
Pfttree *tree;
const Pfttreepar *treepar;
Real harvest=0.0;
Real leaf_old;
tree=pft->data;
treepar=getpftpar(pft,data);
harvest=(((tree->ind.sapwood*HARVEST_EFFICIENCY_SAP+
tree->ind.heartwood*HARVEST_EFFICIENCY)-tree->ind.debt)*pft->nind);
leaf_old=tree->ind.leaf;
tree->ind.heartwood*=1-HARVEST_EFFICIENCY;
tree->ind.sapwood*=1-HARVEST_EFFICIENCY_SAP;
tree->ind.debt=0;
tree->ind.leaf=8000*tree->ind.sapwood/(wooddens*tree->height*pft->par->sla);
harvest+=(leaf_old-tree->ind.leaf)*pft->nind;
/* Call allometry to adjust height and crownarea */
allometry_tree(pft);
fpc_tree(pft);
return harvest;
} /* of 'coppice_tree' */
Grass harvest on biomass plantations (harvest_stand.c) is called from
daily_biomass_grass.c if bm_inc >=200. Biograss harvest follows the
same harvest routine as for standard grasses, i.e. 50% of ind.leaf is
harvested. This results in maximal achievable biomass yields.
If the flag #NEW_GRASS is switched on, harvest_stand.c is called from
daily_biomass_grass.c if ind.leaf >=400 (or if ind.leaf>1 AND
ind.leaf<(0.75*max_leaf) ). In the harvest routine 85% of ind.leaf is
harvested. This leads to less annual harvest events (2-3 per year in
temperate regions, 3-5 in tropical regions, and even more if irrigated).
Tim Beringer, Sibyll Schaphoff