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}
\]
Component Variables
Content Type | Name | Description | Data Type | Unit | Min Value | Max Value | Default Value |
constant | cDroughtTolerance | Tolerance of plant for drought | DOUBLE | 1 | 0.0 | 1.0 | 1.0 |
input | iActualTranspiration | Actual Transpiration | DOUBLE | mm/d | 0.0 | 10.0 | 0.0 |
input | iPotentialTranspiration | Potential Transpiration | DOUBLE | mm/d | 0.0 | 10.0 | 0.0 |
out | TRANRF | Transpiration reduction factor | DOUBLE | 1 | 0.0 | 1.0 | 1.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