Description Usage Arguments Examples
This function calculates extraterrestrial solar radiation normal to surface (in W/m2) for a given day of year, location and topogrpahy.
1  | ExtraterrestrialNormal(DOY, Lat, Lon, SLon, DS, Slope, Aspect)
 | 
DOY | 
 Day of year  | 
Lat | 
 Latitude (in degrees)  | 
Lon | 
 Longitude in degrees  | 
SLon | 
 Standard longitude (based on time zone) in degrees  | 
DS | 
 Daylight saving in minutes  | 
Slope | 
 Site slope in degrees  | 
Aspect | 
 Site aspect with respect to the south in degrees  | 
1 2 3 4 5 6 7 8 9  | #Calculating solar incidence angle for two consecutive days on 45 degree latitude and
# 10 degree longitude
DOY <- seq(0, 2, .05)
SextrNormal <- ExtraterrestrialNormal(DOY, Lat = 45, Lon=10, SLon=10, DS=0, Slope = 10, Aspect = 0)
#Note: only the difference between Lon and SLon matters not each value
plot(DOY, SextrNormal)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.