net.simplace.client.simulation.lap.Co2InfluenceOnTranspiration

Reduces the ActualTranspiration due to increasing \(CO_2\)

\(CO_2\) calculation

The actual \(CO_2\) is calculated by a linear function

\[ \begin{equation} CO_2(Year) = Slope \cdot (Year-StartYear) + StartValue \label{co2} \end{equation} \]

Transpiration reduction

Transpiration is reduced by a factor that depends linear on the actual CO2 by:

\[ \begin{eqnarray} f(CO_2) & = & Transpiration\_m \cdot CO_2 + Transpiration\_b \label{fco2}\\ ReducedActualTranspiration & = & ActualTranspiration \cdot f(CO_2(year)) \label{redtrans} \end{eqnarray} \]

Remarks

If you want to switch of the Co2 effect (e.g. if you use want to use the same solution with projects to calculate with and without Co2 effect), then you can parameterize the component, so that the factor is always 1:

For clarity reasons however, it is recommended to use different solutions and to remove the simcomponent from the solution, if you don't want to calculate Co2 effect.

References

Calculations due to LintulFAST. Further reference needed!

Component Variables

Content TypeNameDescriptionData TypeUnitMin ValueMax ValueDefault Value
constantcSlopeSlope of the linear function calculating the \(CO_2\) amount \(\eqref{co2}\)DOUBLEppm/a0.020.03.5
constantcStartValueStart \(CO_2\) value of the linear function calculating the \(CO_2\) amount \(\eqref{co2}\)DOUBLEppm220.0400.0350.0
constantcStartYearStart year of the linear function calculating the \(CO_2\) amount \(\eqref{co2}\)INTa193020201990
constantcTranspiration_bIntercept of the linear function calculating the reduction factor \(\eqref{fco2}\)DOUBLE10.020.01.1
constantcTranspiration_mSlope of the linear function calculating the reduction factor \(\eqref{fco2}\)DOUBLEreciprocal_parts_per_million0.020.0-3.0E-4
inputiActualTranspiration(Unreduced) actual transpirationDOUBLEmm/d0.020.0-
outActualTranspirationReduced actual transpiration by \(CO_2\) \(\eqref{redtrans}\)DOUBLEmm/d0.020.0-



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


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