net.simplace.client.simulation.lap.lintul.TemperatureIncrement

Calculates effective temperature sums for anthesis and maturity based on daily temperature and base temperatures

Daily rates of temperature sums

The model takes daily mean temperature iAirTemperatureMean and the parameters cBaseTempBeforeAnt and cBaseTempAfterAnt and calculates the coresponding EffectiveTempRateBeforeAnt and EffectiveTempRateAfterAnt by subtracting the base temperatures from the mean temperatures.

\[ EffectiveTempRateBeforeAnt = max(0,iAirTemperatureMean - cBaseTempBeforeAnt) \\ EffectiveTempRateAfterAnt = max(0,iAirTemperatureMean - cBaseTempAfterAnt) \]

Rate reduction due to high mean temperatures

If the mean temperature iAirTemperatureMean exceeds cTempLimit, then the temperature sum rates are reduced linearly, becoming 0 when mean temperature reaches cTempUpperLimit:

\[ EffectiveTempRateBeforeAnt = \frac{cTempLimit-cBaseTempBeforeAnt}{cTempUpperLimit - cTempLimit}\cdot (cTempUpperLimit - iAirTemperatureMean) \\ EffectiveTempRateAfterAnt = \frac{cTempLimit-cBaseTempAfterAnt}{cTempUpperLimit - cTempLimit}\cdot (cTempUpperLimit - iAirTemperatureMean) \]

References

Component Variables

Content TypeNameDescriptionData TypeUnitMin ValueMax ValueDefault Value
constantcBaseTempAfterAntBase temperature after anthesisDOUBLE°C0.040.09.0
constantcBaseTempBeforeAntBase temperature before anthesisDOUBLE°C0.040.01.0
constantcTempLimitthreshold 1 for heat stressDOUBLE°C0.060.012.6
constantcTempUpperLimitthreshold 2 for heat stressDOUBLE°C0.060.015.6
inputiAirTemperatureMeanMean air temperatureDOUBLE°C-40.060.00.0
outEffectiveTempRateAfterAntDaily temperature sum rate after anthesisDOUBLE°C0.055.00.0
outEffectiveTempRateBeforeAntDaily temperature sum rate before anthesisDOUBLE°C0.055.00.0



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


// 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) - TemperatureIncrement