net.simplace.sim.components.models.lintul.Functions




public class Functions {
// Public Constructors
public Functions();


// Class Methods
public static HashMap 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
returns Hashmap with entries "PEVAP" and "PTRAN"
public static HashMap 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
returns Hashmap with entries "PEVAP" and "PTRAN"


}