R/tcplHillVal.R

Defines functions tcplHillVal

Documented in tcplHillVal

#-------------------------------------------------------------------------------
# tcplHillVal: Calculate the value for a given concentration
#-------------------------------------------------------------------------------

#' @rdname hill_utils
#' @export

tcplHillVal <- function(logc, tp, ga, gw, bt = 0) {
  
  bt + (tp - bt)/(1 + 10^((ga - logc)*gw))

}

#-------------------------------------------------------------------------------

Try the tcpl package in your browser

Any scripts or data that you put into this service are public.

tcpl documentation built on Oct. 7, 2023, 1:06 a.m.