#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)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.