net.simplace.client.simulation.lap.lintul.LintulWaterStress

LintulWaterStress calculates the transpiration reduction factor (TRANRF) based on the ratio between actual crop transpiration (TRAN in mm) and potential crop transpiration (PTRAN in mm):

\[ \begin{eqnarray} TRANRF &=& MIN(1,\frac{TRAN}{PTRAN} \cdot \frac{1}{DroughtTolerance}); \end{eqnarray} \]

TRAN and PTRAN are provided by the SimComponent EvapTran.java. The SimComponent forsees another factor of "drought tolerance" (besides TRANCO in the SimComponent EvapTran.java) to dampen the effect of drought stress by directly reducing TRANRF, but changing the "DroughtTolerance" factor to values other than unity is strongly discouraged.

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.

Component Variables

Content TypeNameDescriptionData TypeUnitMin ValueMax ValueDefault Value
constantcDroughtToleranceTolerance of plant for droughtDOUBLE10.01.01.0
inputiActualTranspirationActual TranspirationDOUBLEmm/d0.010.00.0
inputiPotentialTranspirationPotential TranspirationDOUBLEmm/d0.010.00.0
outTRANRFTranspiration reduction factorDOUBLE10.01.01.0



public class LintulWaterStress extends
net.simplace.simulation.model.FWSimComponent {
// Public Constructors
public LintulWaterStress();


// Public Instance Methods
public HashMap createVariables(); // Defines
net.simplace.simulation.model.FWSimComponent


create the FWSimVariables as interface for this SimComponent

// Protected Instance Methods
protected void init(); // Defines
net.simplace.simulation.model.FWSimComponent


initializes the fields by getting input and output FWSimVariables from VarMap
protected void process(); // Defines
net.simplace.simulation.model.FWSimComponent


process the algorithm and write the results back to VarMap
protected FWSimComponent clone(FWSimVarMap aVarMap);
// Defines net.simplace.simulation.model.FWSimComponent


creates a clone from this SimComponent for use in other threads


}



Hierarchy: java.lang.Object - net.simplace.simulation.model.FWSimComponent (net.simplace.simulation.util.FWSimFieldContainer) - LintulWaterStress