net.simplace.sim.components.experimental.amei.Photoperiod
Reduces daily temperature increment by photoperiod.
Taken as import from BIOMA (Davide Fumagalli). Changed names of the calculation variables.
References
Photoperiod effect on development - Stockle, C.O., Donatelli, M., Nelson, R., 2003. CropSyst, a cropping systems simulation model. European Journal of Agronomy, 18, 289-307
Component Variables
Content Type | Name | Description | Data Type | Unit | Min Value | Max Value | Default Value |
constant | iPhotoInhibition | Daily mean air temperature | DOUBLE | h | 0.0 | 24.0 | 14.0 |
constant | iPhotoInsensitivity | Daily effective temperature before anthesis | DOUBLE | h | 0.0 | 24.0 | 6.0 |
input | iDayLength | Day length in minutes | INT | minute | 0 | 1440 | - |
out | PhotoPeriodFactor | daily photoperiod factor | DOUBLE | 1 | 0.0 | 1.0 | 0.0 |
public class Photoperiod extends net.simplace.sim.model.FWSimComponent {
// Public Constructors
public Photoperiod(String aName, HashMap aFieldMap, HashMap aInputMap,
Element aSimComponentElement, FWSimVarMap aVarMap, int aOrderNumber);
public Photoperiod();
// Public Instance Methods public HashMap createVariables(); // Defines
net.simplace.sim.model.FWSimComponent
Create the FWSimVariables as interface for this SimComponent
// Protected Instance Methods protected void init(); // Defines net.simplace.sim.model.FWSimComponent
protected void process(); // Defines net.simplace.sim.model.FWSimComponent
protected FWSimComponent clone(FWSimVarMap aVarMap);
// Defines net.simplace.sim.model.FWSimComponent
}
Hierarchy: java.lang.Object - net.simplace.sim.model.FWSimComponent (net.simplace.sim.util.FWSimFieldContainer) - Photoperiod