R/GRPsi.R

Defines functions GRPsiPol2.fun GRPsiPol.fun GRPsiLin.fun

Documented in GRPsiLin.fun GRPsiPol2.fun GRPsiPol.fun

#Models of GR vs water potential ####################
GRPsiLin.fun <- function(Psi, Psib, thetaH) {
  #Linear hydrotime model (Bradford, 2002)
  GR50 <- ( Psi - Psib ) / thetaH
  return(ifelse(GR50 < 0, 0, GR50)) }

"GRPsiLin" <- function() {
  fct <- function(x, parm)
  { GR50 <- GRPsiLin.fun(x, parm[,1], parm[,2])
  return(ifelse(GR50<0, 0, GR50)) }
  ssfct <- function(data)
  { x <- data[, 1]
  y <- data[, 2]
  mod <- lm( y ~ x )
  thetaH <- 1/coef(mod)[2]
  Psib <- - coef(mod)[2]*thetaH
  return(c(Psib, thetaH))
  }
  deriv1 <- function(x, parms){

    #Approximation by using finite differences
    Psib <-  as.numeric(parms[,1]); thetaH <- as.numeric(parms[,2]);

    d1.1 <- GRPsiLin.fun(x, Psib, thetaH)
    d1.2 <- GRPsiLin.fun(x, (Psib + 10e-6), thetaH)
    d1 <- (d1.2 - d1.1)/10e-6

    d2.1 <- GRPsiLin.fun(x, Psib, thetaH)
    d2.2 <- GRPsiLin.fun(x, Psib, (thetaH + 10e-6))
    d2 <- (d2.2 - d2.1)/10e-6

    cbind(d1, d2)
  }
  names <- c("Psib", "thetaH")
  text <- "Linear hydrotime model (Bradford, 2002)"
  returnList <- list(fct = fct, ssfct = ssfct, names = names, text = text, deriv1 = deriv1)
  class(returnList) <- "drcMean"
  invisible(returnList)
}

"GRPsi.Lin" <- function() {
  fct <- function(x, parm)
  { GR50 <- GRPsiLin.fun(x, parm[,1], parm[,2])
    return(ifelse(GR50<0, 0, GR50)) }
  ssfct <- function(data)
  { x <- data[, 1]
  y <- data[, 2]
  mod <- lm( y ~ x )
  thetaH <- 1/coef(mod)[2]
  Psib <- - coef(mod)[2]*thetaH
  return(c(Psib, thetaH))
  }
  deriv1 <- function(x, parms){

    #Approximation by using finite differences
    Psib <-  as.numeric(parms[,1]); thetaH <- as.numeric(parms[,2]);

    d1.1 <- GRPsiLin.fun(x, Psib, thetaH)
    d1.2 <- GRPsiLin.fun(x, (Psib + 10e-6), thetaH)
    d1 <- (d1.2 - d1.1)/10e-6

    d2.1 <- GRPsiLin.fun(x, Psib, thetaH)
    d2.2 <- GRPsiLin.fun(x, Psib, (thetaH + 10e-6))
    d2 <- (d2.2 - d2.1)/10e-6

    cbind(d1, d2)
    }
  names <- c("Psib", "thetaH")
  text <- "Linear hydrotime model (Bradford, 2002)"
  returnList <- list(fct = fct, ssfct = ssfct, names = names, text = text, deriv1 = deriv1)
  class(returnList) <- "drcMean"
  invisible(returnList)
}

# second order polynomial
GRPsiPol.fun <- function(Psi, Psib, thetaH) {
  #"Polynomial hydrotime model - Convex up"
  GR50 <- - ( Psi^2 - Psib^2) / (thetaH)
  return(ifelse(GR50 < 0, 0, GR50)) }

"GRPsiPol" <- function(){
   fct <- function(x, parm) {
    Psi <- x; Psib <- parm[,1]; thetaH <- parm[,2]
    GR50 <- GRPsiPol.fun(Psi, Psib, thetaH)
    return(ifelse(GR50 < 0, 0, GR50)) }
  names <- c("Psib", "thetaH")
  ss <- function(data){
    x <- data[, 1]
    y <- data[, 2]
    isPositive <- y > 0
    x1 <- x[isPositive]
    y1 <- y[isPositive]
    mod <- lm(y1 ~ I(x1^2))
    thetaH <- - 1/coef(mod)[2]
    Psib <- - sqrt(thetaH * coef(mod)[1])
    return(c(Psib,thetaH))}

  deriv1 <- function(x, parms){

    #Approximation by using finite differences
    Psib <-  as.numeric(parms[,1]); thetaH <- as.numeric(parms[,2]);

    d1.1 <- GRPsiLin.fun(x, Psib, thetaH)
    d1.2 <- GRPsiLin.fun(x, (Psib + 10e-6), thetaH)
    d1 <- (d1.2 - d1.1)/10e-6

    d2.1 <- GRPsiLin.fun(x, Psib, thetaH)
    d2.2 <- GRPsiLin.fun(x, Psib, (thetaH + 10e-6))
    d2 <- (d2.2 - d2.1)/10e-6

    cbind(d1, d2)
    }

  text <- "Polynomial hydrotime model - Convex up"
  returnList <- list(fct = fct, ssfct=ss, names=names, text = text, deriv1 = deriv1)
  class(returnList) <- "drcMean"
  invisible(returnList)
}

"GRPsi.Pol" <- function(){
  fct <- function(x, parm) {
    Psi <- x; Psib <- parm[,1]; thetaH <- parm[,2]
    GR50 <- GRPsiPol.fun(Psi, Psib, thetaH)
    return(ifelse(GR50 < 0, 0, GR50)) }
  names <- c("Psib", "thetaH")
  ss <- function(data){
    x <- data[, 1]
    y <- data[, 2]
    isPositive <- y > 0
    x1 <- x[isPositive]
    y1 <- y[isPositive]
    mod <- lm(y1 ~ I(x1^2))
    thetaH <- - 1/coef(mod)[2]
    Psib <- - sqrt(thetaH * coef(mod)[1])
    return(c(Psib,thetaH))}

  deriv1 <- function(x, parms){

    #Approximation by using finite differences
    Psib <-  as.numeric(parms[,1]); thetaH <- as.numeric(parms[,2]);

    d1.1 <- GRPsiLin.fun(x, Psib, thetaH)
    d1.2 <- GRPsiLin.fun(x, (Psib + 10e-6), thetaH)
    d1 <- (d1.2 - d1.1)/10e-6

    d2.1 <- GRPsiLin.fun(x, Psib, thetaH)
    d2.2 <- GRPsiLin.fun(x, Psib, (thetaH + 10e-6))
    d2 <- (d2.2 - d2.1)/10e-6

    cbind(d1, d2)
  }

  text <- "Polynomial hydrotime model - Convex up"
  returnList <- list(fct = fct, ssfct=ss, names=names, text = text, deriv1 = deriv1)
  class(returnList) <- "drcMean"
  invisible(returnList)
}

# second order polynomial - 2
GRPsiPol2.fun <- function(Psi, Psib, thetaH) {
  #Polynomial hydrotime model - Convex down
  GR50 <- (( Psi - Psib)^2)/ (thetaH)
  return(ifelse(GR50 < 0, 0, GR50)) }

"GRPsiPol2" <- function(){
  fct <- function(x, parm) {
    Psi <- x; Psib <- parm[,1]; thetaH <- parm[,2]
    GR50 <- GRPsiPol2.fun(Psi, Psib, thetaH)
    return(ifelse(Psi < Psib, 0, GR50)) }
  names <- c("Psib", "thetaH")
  ss <- function(data){
    x <- data[, 1]
    y <- data[, 2]
    isPositive <- y > 0
    x1 <- x[isPositive]
    y1 <- y[isPositive]
    Psib <- x1[which( y1==min(y1) )]
    mod <- lm(y1 ~ I((x1 - Psib)^2) - 1)
    thetaH <- 1/coef(mod)[1]
    return(c(Psib,thetaH))}
    deriv1 <- function(x, parms){

    #Approximation by using finite differences
    Psib <-  as.numeric(parms[,1]); thetaH <- as.numeric(parms[,2]);

    d1.1 <- GRPsiLin.fun(x, Psib, thetaH)
    d1.2 <- GRPsiLin.fun(x, (Psib + 10e-6), thetaH)
    d1 <- (d1.2 - d1.1)/10e-6

    d2.1 <- GRPsiLin.fun(x, Psib, thetaH)
    d2.2 <- GRPsiLin.fun(x, Psib, (thetaH + 10e-6))
    d2 <- (d2.2 - d2.1)/10e-6

    cbind(d1, d2)
    }

  text <- "Polynomial hydrotime model - Convex down"
  returnList <- list(fct=fct, ssfct=ss, names=names, text=text, deriv1 = deriv1)
  class(returnList) <- "drcMean"
  invisible(returnList)
}

"GRPsi.Pol2" <- function(){
  fct <- function(x, parm) {
    Psi <- x; Psib <- parm[,1]; thetaH <- parm[,2]
    GR50 <- GRPsiPol2.fun(Psi, Psib, thetaH)
    return(ifelse(Psi < Psib, 0, GR50)) }
  names <- c("Psib", "thetaH")
  ss <- function(data){
    x <- data[, 1]
    y <- data[, 2]
    isPositive <- y > 0
    x1 <- x[isPositive]
    y1 <- y[isPositive]
    Psib <- x1[which( y1==min(y1) )]
    mod <- lm(y1 ~ I((x1 - Psib)^2) - 1)
    thetaH <- 1/coef(mod)[1]
    return(c(Psib,thetaH))}
  deriv1 <- function(x, parms){

    #Approximation by using finite differences
    Psib <-  as.numeric(parms[,1]); thetaH <- as.numeric(parms[,2]);

    d1.1 <- GRPsiLin.fun(x, Psib, thetaH)
    d1.2 <- GRPsiLin.fun(x, (Psib + 10e-6), thetaH)
    d1 <- (d1.2 - d1.1)/10e-6

    d2.1 <- GRPsiLin.fun(x, Psib, thetaH)
    d2.2 <- GRPsiLin.fun(x, Psib, (thetaH + 10e-6))
    d2 <- (d2.2 - d2.1)/10e-6

    cbind(d1, d2)
  }

  text <- "Polynomial hydrotime model - Convex down"
  returnList <- list(fct=fct, ssfct=ss, names=names, text=text, deriv1 = deriv1)
  class(returnList) <- "drcMean"
  invisible(returnList)
}
OnofriAndreaPG/drcSeedGerm documentation built on March 14, 2023, 5:45 p.m.