R/unitconversion.degree.celsius.to.degree.kelvin.R

Defines functions unitconversion.degree.celsius.to.degree.kelvin

Documented in unitconversion.degree.celsius.to.degree.kelvin

#' Unit Conversion - Temperature - Celsius to Kelvin  
#' 
#' Performs a conversion of temperature from Celsius to Kelvin. 
#'
#' @param x Vector - Values in units of degrees Celsius.
#'
#' @return x, but converted to degrees Kelvin.
#'
#' @references
#' NIST. Handbook 133 - Checking the Net Contents of Packaged Goods - Appendix E -  General Tables of Units of Measurement. 2020.  
#' https://www.nist.gov/system/files/documents/2019/12/03/00-20-h133-apdxE_final-17.pdf
unitconversion.degree.celsius.to.degree.kelvin <- function(
  x = 1
) {
  x + 273.15
}

#' @rdname unitconversion.degree.celsius.to.degree.kelvin
unitconversion.deg.C.to.deg.K <- unitconversion.degree.celsius.to.degree.kelvin
burrm/lolcat documentation built on Sept. 15, 2023, 11:35 a.m.