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))
}

Try the photobiology package in your browser

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

photobiology documentation built on Oct. 21, 2023, 1:06 a.m.