R/e2qmol.multipliers.r

Defines functions e2qmol_multipliers

Documented in e2qmol_multipliers

#' Calculate energy to quantum (mol) multipliers
#'
#' Multipliers as a function of wavelength, for converting from energy to
#' photon (quantum) molar units.
#'
#' @param w.length numeric Vector of wavelengths (nm)
#'
#' @return A numeric vector of multipliers
#'
#' @export
#' @examples
#' with(sun.data, e2qmol_multipliers(w.length))
#'
#' @family quantity conversion functions
#'
e2qmol_multipliers <- function(w.length){
  return(e2quantum_multipliers(w.length, molar=TRUE))
}
aphalo/photobiology documentation built on April 1, 2024, 6:48 p.m.