R/gflux.R

Defines functions gflux

Documented in gflux

gflux <-
function(ct, c0 = NULL, T, V, A = 1, M = 44, t = 1/60, p = 101325){
	R <- 8.314
	dc <- ifelse(is.null(c0), ct, ct-c0)
	flux <- (dc * V * M * p) / (t * R * (T + 273.15) * A)
	flux
}

Try the flux package in your browser

Any scripts or data that you put into this service are public.

flux documentation built on June 26, 2022, 9:05 a.m.