Class LintulBiomass

java.lang.Object
net.simplace.sim.model.FWSimComponent
net.simplace.sim.components.models.lintul.LintulBiomass
All Implemented Interfaces:
net.simplace.sim.util.FWSimFieldContainer

public class LintulBiomass extends net.simplace.sim.model.FWSimComponent

LintulBiomass.java calculates daily increase in crop total biomass and LAI depending on intercepted radiation and the occurrence of nitrogen or water stress

Light interception

Incoming radiation (input variable DTR in MJ m-2) is intercepted by the crop canopy depending on the extinction coefficient kc and the actual LAI assuming that photosynthetically active radiation is 50% of the global radiation

Intercepted photosynthetically active radiation (PARINT in MJ m-2) is then calculated as:

\[ \begin{eqnarray} PARINT & = & 0.5 \cdot DRT (1 - e^{-k LAI}) \end{eqnarray} \]

Daily increase in total biomass

Daily increase in total crop biomass is calculated based on the intercepted photosynthetically active radiation (PARINT) depending on the crop specific light use efficiency (LUE) and on the major stress occuring at the same day. In the case of predominant drought stress, daily total biomass increase (GTOTAL in g m-2) is

\[ \begin{eqnarray} GTOTAL & = & LUE \cdot PARINT \cdot TRANRF \end{eqnarray} \]

where TRANRF is the transpiration reduction factor calculated in the SimComponent LintulWaterStress.java as the ratio between actual and potential crop transpiration.

In the case of predominant nitrogen deficiency (i.e. the nitrogen nutrition index NNI is lower than TRANRF), light use efficiency is reduced by the LueReductionToNStress factor and daily total biomass increase (GTOTAL) is calculated as

\[ \begin{eqnarray} GTOTAL & = & LUE \cdot PARINT \cdot LueReductionToNStress \end{eqnarray} \]

where the LueReductionToNStress factor is calculated as

\[ \begin{eqnarray} LueReductionToNStress & = & 1 - LueNStressReduction \cdot e^{(1 - NNI)} \end{eqnarray} \]

The crop specific reduction constant LueNStressReduction and the Nitrogen Nutrition index (NNI) are both dimension less and NNI is defined by the the ratio between actual crop N concentration and critical crop N concentration (half of optimum N concentration which depends on crop and development stage) (for details refer to the SimComponent Ndemand.java).

Daily increase in LAI

The daily increase of total crop biomass is partioned into root, stem, leaves and storage organs depending on a crop development specific partioning factor which is defined in the crop property file. The daily increase in leaf biomass is calculated as the fraction PartLeavesFactor of the total increase GTOTAL (g m-2):

\[ \begin{eqnarray} GLV & = & GTOTAL \cdot PartLeavesFactor \end{eqnarray} \]

Then the daily increase in leaf area index (LAI) is derived from the increase of leaf biomass by multiplication with the specific leaf weight (SLA in m2 g-1)

\[ \begin{eqnarray} GLAI & = & GLV \cdot SLA \end{eqnarray} \]

In the event of nitrogen deficiency, SLA is reduced according to

\[ \begin{eqnarray} SLA & = & SLA \cdot e^{-SlaNStressReduction(1-NNI)} \end{eqnarray} \]

with the dimension less factor SlaNStressReduction expressing the crop specific sensitivity of specific leaf weight to N stress. The SlaNStressReduction factor which is a value between 0 and 1 must be defined in the crop property file.

In the early stage of growth, if the phenological development has not yet passed a user defined stage DevStageRGRL or if LAI is below a user defined critical threshold (0.1875*LaiCritical), the daily increase of LAI (GLAI) is governed by the early rate of growth of green leaves (RGRL) according to the equation

\[ \begin{eqnarray} GLAI & = & LAI \cdot (e^{RGRL \cdot EffectiveTempRateBeforeAnt)}-1) \cdot TRANRF \cdot e^{-LaiNStressReduction(1-NNI)} \end{eqnarray} \]

where EffectiveTempRateBeforeAnt is the effective temperature rate before anthesis (°C d-1) as calculated by the weather transformer. In this early stage, both water stress (TRANRF) as well as nitrogen deficiency (NNI) reduce growth rate of LAI.

The output variables GTOTAL and GLAI are important input variables to the SimComponents LintulPartitioning.java and EvapTranDemand.java

References: Van Oijen, M. and P. Lefelaar. 2008. Lintul-2: water limited crop growth: A simple general crop growth model for water-limited growing conditions. Waageningen University, The Netherlands. Shibu, M. E., P. A. Leffelaar, H. van Keulen, and P. K. Aggarwal. 2010. LINTUL3, a simulation model for nitrogen-limited situations: Application to rice. European Journal of Agronomy 32:255-271.