parent
678a6ce4b7
commit
681e636bf4
@ -0,0 +1,18 @@ |
||||
#' @name vapourwater |
||||
#' @title Vapour pressure and other saturation properties of water |
||||
#' @description A dataset summarising vapour pressure, enthalpy of vapourisation, |
||||
#' and surface tension of water from 0.01 Celsius to 373.95 Celsius. |
||||
#' Data as accepted by the International Association for the Properties |
||||
#' of Water and Steam for general scientific use. |
||||
#' Source: CRC handbook, 94th ed., table 6-10-90, Eric W. Lemmon. |
||||
#' @docType data |
||||
#' @format A data frame with 189 rows and 4 variables: |
||||
#' \describe{ |
||||
#' \item{temperature}{temperature/celsius} |
||||
#' \item{pressure}{pressure/kilopascal} |
||||
#' \item{enthalpy}{enthalpy of vapourisation/kilojoule per kilogram} |
||||
#' \item{surfacetension}{surface tension/millinewton per metre} |
||||
#' } |
||||
#' @source Handbook of Chemistry and Physics, 94th ed., 6-10-90, Eric W. Lemmon. |
||||
#' @author Taha Ahmed |
||||
NULL |
@ -0,0 +1,4 @@ |
||||
A collection of general functions and data |
||||
|
||||
Includes common numerical functions, unit converters, |
||||
some LaTeX-specific functions, as well as reference data. |
|
Binary file not shown.
@ -0,0 +1,17 @@ |
||||
% Generated by roxygen2: do not edit by hand |
||||
% Please edit documentation in R/unit-converters.R |
||||
\name{pascal2torr} |
||||
\alias{pascal2torr} |
||||
\title{Convert Pascal to Torr} |
||||
\usage{ |
||||
pascal2torr(pascal) |
||||
} |
||||
\arguments{ |
||||
\item{pascal}{numeric (note: please supply Pa, not kPa)} |
||||
} |
||||
\value{ |
||||
torr, numeric |
||||
} |
||||
\description{ |
||||
Convert Pascal to Torr |
||||
} |
@ -0,0 +1,17 @@ |
||||
% Generated by roxygen2: do not edit by hand |
||||
% Please edit documentation in R/unit-converters.R |
||||
\name{torr2pascal} |
||||
\alias{torr2pascal} |
||||
\title{Convert Torr to Pascal} |
||||
\usage{ |
||||
torr2pascal(torr) |
||||
} |
||||
\arguments{ |
||||
\item{torr}{numeric} |
||||
} |
||||
\value{ |
||||
pascal, numeric (note returns Pa, not kPa) |
||||
} |
||||
\description{ |
||||
Convert Torr to Pascal |
||||
} |
@ -0,0 +1,26 @@ |
||||
% Generated by roxygen2: do not edit by hand |
||||
% Please edit documentation in R/data.R |
||||
\docType{data} |
||||
\name{vapourwater} |
||||
\alias{vapourwater} |
||||
\title{Vapour pressure and other saturation properties of water} |
||||
\format{A data frame with 189 rows and 4 variables: |
||||
\describe{ |
||||
\item{temperature}{temperature/celsius} |
||||
\item{pressure}{pressure/kilopascal} |
||||
\item{enthalpy}{enthalpy of vapourisation/kilojoule per kilogram} |
||||
\item{surfacetension}{surface tension/millinewton per metre} |
||||
}} |
||||
\source{ |
||||
Handbook of Chemistry and Physics, 94th ed., 6-10-90, Eric W. Lemmon. |
||||
} |
||||
\description{ |
||||
A dataset summarising vapour pressure, enthalpy of vapourisation, |
||||
and surface tension of water from 0.01 Celsius to 373.95 Celsius. |
||||
Data as accepted by the International Association for the Properties |
||||
of Water and Steam for general scientific use. |
||||
Source: CRC handbook, 94th ed., table 6-10-90, Eric W. Lemmon. |
||||
} |
||||
\author{ |
||||
Taha Ahmed |
||||
} |
Loading…
Reference in new issue