sp_volume: Specific Volume

sp_volumeR Documentation

Specific Volume

Description

This function solves for the specific volume of a substance using only the substance's density

Usage

sp_volume(rho)

Arguments

rho

numeric vector that contains the density

Details

The equation is expressed as

\\nu = \frac{1}{\\rho}

\rho

substance density (mass divided by volume) [kg/m^3, slug/ft^3", or lbm/ft^3]

Value

the specific volume as a numeric vector

Author(s)

Irucka Embry

References

WikiEngineer, 27 March 2022, "Water Properties & Definitions", https://web.archive.org/web/20210412034245/http://www.wikiengineer.com/Water-Resources/PropertiesAndDefinitions. Retrieved thanks to the Internet Archive: Wayback Machine

Examples

# Examples

library(iemisc)

rho1 <- density_water(Temp = 68, units = "Eng", Eng_units = "slug/ft^3")

sp_volume(rho = rho1) # slug/ft^3


rho2 <- density_water(Temp = 68, units = "Eng", Eng_units = "lbm/ft^3")

sp_volume(rho = rho2) # lbm/ft^3


rho3 <- density_water(Temp = 20, units = "SI")

sp_volume(rho = rho3) # kg / m^3





iemisc documentation built on Sept. 25, 2023, 5:09 p.m.