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

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

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

#' Unit Conversion - Temperature - Kelvin to Celsius  
#' 
#' Performs a conversion of temperature from Kelvin to Celsius. 
#'
#' @param x Vector - Values in units of degrees Kelvin.
#'
#' @return x, but converted to degrees Celsius.
#'
#' @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.kelvin.to.degree.celsius <- function(
  x = 1
) {
  x - 273.15
}

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