Class Functions
java.lang.Object
net.simplace.sim.components.models.lintul.Functions
- Author:
- Gunther Krauss, Andreas Enders
-
Nested Class Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic Functions.PENMANResult
PENMAN
(double DAVTMP, double VP, double DTR, double LAI, double WN, double RNINTC) Computation of the PENMAN EQUATION, daily values of potential evaporation and transpirationstatic Functions.PENMANResult
PENMAN
(double DAVTMP, double VP, double DTR, double LAI, double WN, double RNINTC, double fraction) Computation of the PENMAN EQUATION - fraction of daily values (e.g. hourly) for potential evaporation and transpiration The modified Penman routine calculates sub-daily (e.g. hourly) values for potential transpiration and evaporation.
-
Constructor Details
-
Functions
public Functions()
-
-
Method Details
-
PENMAN
public static Functions.PENMANResult PENMAN(double DAVTMP, double VP, double DTR, double LAI, double WN, double RNINTC) Computation of the PENMAN EQUATION, daily values of potential evaporation and transpiration- Parameters:
DAVTMP
- Daily average temperatureVP
- Vapour pressureDTR
- Daily total radiationLAI
- Leaf area indexWN
- Wind SpeedRNINTC
- interception of rain by the canopy- Returns:
- Hashmap with entries "PEVAP" and "PTRAN"
-
PENMAN
public static Functions.PENMANResult PENMAN(double DAVTMP, double VP, double DTR, double LAI, double WN, double RNINTC, double fraction) Computation of the PENMAN EQUATION - fraction of daily values (e.g. hourly) for potential evaporation and transpiration The modified Penman routine calculates sub-daily (e.g. hourly) values for potential transpiration and evaporation. For hourly values use a fraction of 1/24. All inputs must match the corresponding time span. If no sub-daily values are available, one can use daily values for DAVTMP, VP, LAI, WN and (daily DTR)*fraction for DTR and (daily RNINTC)*fraction for RNINTC- Parameters:
DAVTMP
- average temperature of the time span (or daily average)VP
- Vapor pressure during time span (or daily average)DTR
- total radiation during time span (or daily total radiation * fraction)LAI
- Leaf area index during time span (or daily average)WN
- Wind Speed during time span (or daily average)RNINTC
- interception of rain by the canopy during time span (or daily interception * fraction)fraction
- The fraction of a day - e.g. 1/24 for hourly values- Returns:
- Hashmap with entries "PEVAP" and "PTRAN"
-