Description Usage Arguments Examples
Shell correlation from Kumar thesis (2005)
1 |
pres.pr |
pseudo-reduced pressure |
temp.pr |
pseudo-reduced temperature |
tolerance |
controls the iteration accuracy |
verbose |
print internal |
1 2 3 4 5 6 7 8 9 10 11 | # single z point and create a dataframe with info
ppr <- 1.5
tpr <- 1.1
z.calc <- z.Shell(pres.pr = ppr, temp.pr = tpr)
# From the Standing-Katz chart we obtain a digitized point:
z.chart <- getStandingKatzMatrix(tpr_vector = tpr,
pprRange = "lp")[1, as.character(ppr)]
ape <- abs((z.calc - z.chart) / z.chart) * 100
df <- as.data.frame(list(Ppr = ppr, z.calc =z.calc, z.chart = z.chart, ape=ape))
rownames(df) <- tpr
df
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.