net.simplace.client.simulation.lap.fao56.radiation.NetRadiationFromAny

Calculates net radiation from either global radiation or, if no global radiation available, from sun hours using (FAO 56) methods. Extra-terrestrial as well as solar radiation (in case of sun hours input) are also calculated.

Chosen method depends on input availability, preferential order as below.

  1. From solar radiation.
  2. From sun hours.

Note: If data is missing in weather inputs, calculation method may change without throwing an error. This may be desired when dealing with an incomplete dataset, but undesired when missing data unintendedly changes the calculation method. An INFO message is written to log when the method changes.

For documentation of the formulas please check the original reference (FAO 56)

References

(FAO 56): Allen, Crop evapotranspiration - Guidelines for computing crop water requirements - FAO Irrigation and drainage paper 56, 1998

Component Variables

Content TypeNameDescriptionData TypeUnitMin ValueMax ValueDefault Value
constantcAltitudeelevation above sea levelDOUBLEm--0.0
constantcAngstromRegressionConstantAngstrom equation regression constantDOUBLE1--0.25
constantcAngstromRegressionSlopeAngstrom equation regression slopeDOUBLE1--0.5
constantcLatitudelatitudeDOUBLE°-90.090.00.0
constantcUseAngstromVariablesuse measured Angstrom variables if true, else use default onesBOOLEAN--false
inputiActualVapourPressureactual vapour pressureDOUBLEkPa--0.0
inputiSolarRadiationsolar or shortwave radiationDOUBLEMJ/(m2 d)---
inputiSunHoursactual duration of sunshineDOUBLEh0.024.0-
inputiTMaxmaximum daily temperatureDOUBLE°C-100.0100.00.0
inputiTMinminimum daily temperatureDOUBLE°C-100.0100.00.0
outExtraterrestrialRadiationextraterrestrial radiationDOUBLEMJ/(m2 d)--0.0
outNetOutgoingLWRadiationnet outgoing longwaveRadiationDOUBLEMJ/(m2 d)--0.0
outNetRadiationnet radiationDOUBLEMJ/(m2 d)--0.0
outNetSolarRadiationnet solar or shortwave radiationDOUBLEMJ/(m2 d)--0.0
outSolarRadiationsolar or shortwave radiationDOUBLEMJ/(m2 d)--0.0



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


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