R/Thermal.R

Defines functions Latent_Heat

Documented in Latent_Heat

#This file contains equations regarding thermal physics

#'@title Latent heat
#'@param Q Heat (kJ)
#'@param m mass (kg)
#'@param L Latent Heat ()
#'@description This function calculates the Lantent Heat
#'@return The multiplication of mass and heat
Latent_Heat <- function(m, L) {
  return(m * L)
}
Afrochemist/RPhysics documentation built on May 23, 2019, 4:03 a.m.