net.simplace.usermodules.ET_Study.ET_helper
Component Variables
Content Type | Name | Description | Data Type | Unit | Min Value | Max Value | Default Value |
input | iEvaporation_cumulative | actual cumulative soil evaporation with a crop | DOUBLE | mm | 0.0 | 3000.0 | - |
input | iEvaporation_day | actual daily soil evaporation with a crop | DOUBLE | mm | 0.0 | 30.0 | - |
input | iIsHarvest | - | BOOLEAN | 1 | - | - | false |
input | iTranspiration_cumulative | actual cumulative crop transpiration | DOUBLE | mm | 0.0 | 3000.0 | - |
input | iTranspiration_day | actual daily crop transpiration | DOUBLE | mm | 0.0 | 30.0 | - |
ETCrop_cumulative | actual cumulative crop evapotranspiration - input to this class | DOUBLE | mm | null |
ETCrop_day | actual daily crop evapotranspiration - input to this class | DOUBLE | mm | null |
public class ET_helper extends net.simplace.simulation.model.FWSimComponent {
// Public Constructors
public ET_helper();
// 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) - ET_helper