Last data update: 2014.03.03

R: Returns Schmidt number for a specific gas at a given...
getSchmidtR Documentation

Returns Schmidt number for a specific gas at a given temperature

Description

Schmidt number is temperature dependant, and is the ratio of the kinematic viscosity of water to a diffusion coefficient. Coefficients are included for He, O2, CO2, CH4, SF6, N2O, Ar, and N2.

Usage

getSchmidt(temperature, gas)

Arguments

temperature

Numeric vector of water temperatures in deg. Celsius

gas

String for gas code. Valid inputs include: He, O2, CO2, CH4, SF6, N2O, Ar, and N2

Value

Schmidt number (unitless)

Note

Temperature range is only valid from 4-35 deg Celsius

Author(s)

Jordan S. Read

References

Raymond, Peter A., Christopher J. Zappa, David Butman, Thomas L. Bott, Jody Potter, Patrick Mulholland, Andrew E. Laursen, William H. McDowell, and Denis Newbold. Scaling the gas transfer velocity and hydraulic geometry in streams and small rivers. Limnology & Oceanography: Fluids & Environments 2 (2012): 41-53.

Examples

getSchmidt(temperature=12, gas="O2")

Results


R version 3.3.1 (2016-06-21) -- "Bug in Your Hair"
Copyright (C) 2016 The R Foundation for Statistical Computing
Platform: x86_64-pc-linux-gnu (64-bit)

R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
Type 'license()' or 'licence()' for distribution details.

R is a collaborative project with many contributors.
Type 'contributors()' for more information and
'citation()' on how to cite R or R packages in publications.

Type 'demo()' for some demos, 'help()' for on-line help, or
'help.start()' for an HTML browser interface to help.
Type 'q()' to quit R.

> library(LakeMetabolizer)
Loading required package: rLakeAnalyzer
> png(filename="/home/ddbj/snapshot/RGM3/R_CC/result/LakeMetabolizer/getSchmidt.Rd_%03d_medium.png", width=480, height=480)
> ### Name: getSchmidt
> ### Title: Returns Schmidt number for a specific gas at a given temperature
> ### Aliases: getSchmidt
> ### Keywords: math methods
> 
> ### ** Examples
> 
> getSchmidt(temperature=12, gas="O2")
[1] 806.6432
> 
> 
> 
> 
> 
> dev.off()
null device 
          1 
>