net.simplace.client.simulation.lap.lintul.LintulRoot
Root depth growth simulation (only depth, no biomass) Component Variables
Content Type | Name | Description | Data Type | Unit | Min Value | Max Value | Default Value |
constant | cInitRootDepth | Initial rooting depth (at crop emergence) | DOUBLE | m | 0.0 | 5.0 | 0.1 |
constant | cMaxRootDepth | Maximum rooting depth | DOUBLE | m | 0.0 | 5.0 | 1.2 |
constant | cMaxRootGrowthRate | Maximum rate of increase in rooting depth | DOUBLE | metre_per_day | 0.0 | 2.0 | 0.012 |
constant | cWaterContentWiltingPoint | Soil water content at wilting point | DOUBLE | m3/m3 | 0.0 | 1.0 | 0.075 |
input | iDevStage | Development stage of the plant | DOUBLE | 1 | 0.0 | 20.0 | 0.0 |
input | iDoHarvest | If plant is harvested on this day | BOOLEAN | 1 | - | - | false |
input | iDoSow | If plant is sown on this day | BOOLEAN | 1 | - | - | false |
input | iGlobalWaterContent | Actual amount of water in the soil (WA) | DOUBLE | mm | 0.0 | 1000.0 | - |
state | sRootDepth | Root Depth | DOUBLE | m | 0.0 | 20.0 | 0.0 |
rate | rRateRootDepth | Rate of Root Depth | DOUBLE | metre_per_day | 0.0 | 2.0 | 0.0 |
public class LintulRoot extends net.simplace.simulation.model.FWSimComponent {
// Public Constructors
public LintulRoot();
// 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) - LintulRoot