
Compute the apparent movement of the Sun from the Earth with the
functions fSolD
and fSolI
.
calcSol(lat, BTd, sample = 'hour', BTi,
EoT = TRUE, keep.night = TRUE,
method = 'michalsky')
Latitude (degrees) of the point of the Earth where calculations are needed. It is positive for locations above the Equator.
Daily time base, a POSIXct
object which may be
the result of fBTd
. It is not considered if BTi
is provided.
Increment of the intradaily sequence. It is a character
string, containing one of <U+2018>"sec"<U+2019>, <U+2018>"min"<U+2019>, <U+2018>"hour"<U+2019>.
This can optionally be preceded by a (positive or
negative) integer and a space, or followed by <U+2018>"s"<U+2019>. It is
used by seq.POSIXt
.
It is not considered if BTi
is provided.
logical, if TRUE
the Equation of Time is
used. Default is TRUE.
logical, if TRUE
(default) the night is
included in the time series.
character
, method for the sun geometry
calculations to be chosen from 'cooper', 'spencer', 'michalsky' and
'strous'. See references for details.
A Sol-class
object.
Cooper, P.I., Solar Energy, 12, 3 (1969). "The Absorption of Solar Radiation in Solar Stills"
Spencer, Search 2 (5), 172, https://www.mail-archive.com/sundial@uni-koeln.de/msg01050.html
Michalsky, J., 1988: The Astronomical Almanac's algorithm for approximate solar position (1950-2050), Solar Energy 40, 227-235
Perpi<U+00F1><U+00E1>n, O, Energ<U+00ED>a Solar Fotovoltaica, 2015. (https://oscarperpinan.github.io/esf/)
Perpi<U+00F1><U+00E1>n, O. (2012), "solaR: Solar Radiation and Photovoltaic Systems with R", Journal of Statistical Software, 50(9), 1-32, 10.18637/jss.v050.i09
# NOT RUN {
BTd = fBTd(mode = 'serie')
lat = 37.2
sol = calcSol(lat, BTd[100])
print(as.zooD(sol))
library(lattice)
xyplot(as.zooI(sol))
solStrous = calcSol(lat, BTd[100], method = 'strous')
print(as.zooD(solStrous))
solSpencer = calcSol(lat, BTd[100], method = 'spencer')
print(as.zooD(solSpencer))
solCooper = calcSol(lat, BTd[100], method = 'cooper')
print(as.zooD(solCooper))
# }
Run the code above in your browser using DataLab