R/Ka_to_delG.R

Defines functions Ka_to_delG

Documented in Ka_to_delG

#' Ka to dG conversion
#'
#' `Ka_to_delG` converts a value from Ka (constant of association) to
#' Gibbs free energy (kJ/mol).
#'
#' @param ka The Ka value
#' @return Gibbs free energy, in kJ/mol
#' @export

Ka_to_delG <- function(ka) {
  -8.314*298*log(ka)/1000
}
awqx/qsarr documentation built on Oct. 2, 2021, 7:05 a.m.