Newer
Older
PEdaily_Oudin <- function(JD,
Temp,
LatRad, # deprecated
Lat,
LatUnit = c("rad", "deg")) {
## ---------- deprecated function
.Deprecated(new = "PEdaily_Oudin", package = NULL,
msg = "deprecated function\nplease, use PE_Oudin() instead",
old = as.character(sys.call(sys.parent()))[1L])
## ---------- check arguments
Delaigue Olivier
committed
if (!missing(LatRad)) {
warning("Deprecated \"LatRad\" argument. Please, use \"Lat\" instead.")
if (missing(Lat)) {
Lat <- LatRad
Delaigue Olivier
committed
}
if (!(inherits(JD, "numeric") | inherits(JD, "integer"))) {
stop("'JD' must be of class 'numeric'")
}
if (!(inherits(Temp, "numeric") | inherits(Temp, "integer"))) {
stop("'Temp' must be of class 'numeric'")
}
if (length(JD) != length(Temp)) {
stop("'Temp' and 'LatUnit' must have the same length")
}
if (!any(LatUnit %in% c("rad", "deg"))) {
Delaigue Olivier
committed
stop("'LatUnit' must be one of \"rad\" or \"deg\"")
}
if (!inherits(Lat, "numeric") | length(Lat) != 1) {
stop("'Lat' must be a 'numeric' of length one")
if (LatUnit[1L] == "rad" & ((Lat >= pi/2) | (Lat <= -pi/2))) {
stop("'Lat' must be comprised between -pi/2 and +pi/2 degrees")
}
if (LatUnit[1L] == "deg" & ((Lat >= 90) | (Lat <= -90))) {
stop("'Lat' must be comprised between -90 and +90 degrees")
}
Delaigue Olivier
committed
if (LatUnit[1L] == "rad") {
FI <- Lat
}
if (LatUnit[1L] == "deg") {
FI <- Lat / (180 / pi)
}
if (any(JD < 0) | any(JD > 366)) {
stop("'JD' must only contain integers from 1 to 366")
}
## ---------- Oudin's formula
PE_Oudin_D <- rep(NA, length(Temp))
Delaigue Olivier
committed
COSFI <- cos(FI)
Delaigue Olivier
committed
for (k in seq_along(Temp)) {
Delaigue Olivier
committed
TETA <- 0.4093 * sin(JD[k] / 58.1 - 1.405)
COSTETA <- cos(TETA)
COSGZ <- max(0.001, cos(FI - TETA))
GZ <- acos(COSGZ)
COSOM <- 1 - COSGZ / COSFI / COSTETA
Delaigue Olivier
committed
if (COSOM < -1) {
COSOM <- -1
}
if (COSOM > 1) {
Delaigue Olivier
committed
COSOM <- 1
Delaigue Olivier
committed
}
Delaigue Olivier
committed
COSOM2 <- COSOM * COSOM
Delaigue Olivier
committed
if (COSOM2 >= 1) {
SINOM <- 0
} else {
SINOM <- sqrt(1 - COSOM2)
}
Delaigue Olivier
committed
OM <- acos(COSOM)
COSPZ <- COSGZ + COSFI * COSTETA * (SINOM/OM - 1)
Delaigue Olivier
committed
if (COSPZ < 0.001) {
COSPZ <- 0.001
}
Delaigue Olivier
committed
ETA <- 1 + cos(JD[k] / 58.1) / 30
GE <- 446 * OM * COSPZ * ETA
if (is.na(Temp[k])) {
PE_Oudin_D[k] <- NA
} else {
Delaigue Olivier
committed
if (Temp[k] >= -5.0) {
PE_Oudin_D[k] <- GE * (Temp[k] + 5) / 100 / 28.5
} else {
PE_Oudin_D[k] <- 0
}
Delaigue Olivier
committed
}
if (any(is.na(Temp))) {
if (any(is.na(PE_Oudin_D))) {
warning("'Temp' time series, and therefore the returned 'PE' time series, contain missing value(s)")
} else {
warning("'Temp' time series contains missing value(s)")
}
}
if (!any(is.na(Temp)) & any(is.na(PE_Oudin_D))) {
warning("returned 'PE' time series contains missing value(s)")
}
Delaigue Olivier
committed
return(PE_Oudin_D)