-
Couldn't load subscription status.
- Fork 65
Description
I' trying to figure out a way to take advantage of Clapeyron.jl to find key properties of substances without having to look up in Poling et al. "The Properties of Gases and Liquids" all the time.
A simple way could be to create a SingleFluid model and read the properties. As an example:
julia> mod = SingleFluid("water")
julia> mod.properties
Clapeyron.SingleFluidProperties(Mw = 18.0153, Tr = 647.096, rhor = 17873.7, lb_volume = 1.44152e-5, Tc = 647.096, Pc = 2.2064e7, rhoc = 17873.7, Ttp = 273.16, ptp = 611.655, rhov_tp = 0.269472, rhol_tp = 55497.0, acentricfactor = 0.344292, Rgas = 8.31437)
julia> mod.properties.Mw
18.015268000000003So I recognize Mw (molar mass), Tc (critical temperature), Pc (critical pressure), acentricfactor.
Question 1: what are
Tr? (same value as critical temperature)rhor?lb_volume? Lower bound for molar volume??? Used to constrain molar volume in computations?rhoc? Probably molar density at critical point??xtpwherexisT,p,rhov,rhol... triple point values?
Question 2: are any of these parameters related to polarity? I understand that polar forces are important with water...
Question 3: would it be simpler to go into some database/JSON file of Clapeyron.jl to find these values? Instead of looping through substances, creating a model, and then reading the properties...
Question 4: is there a list of substances which work with SingleFluid (or other) EoS:s?
Why these questions? Two reasons:
- I'm trying to figure out a way to avoid having to "fire up" my Kindle reader to look up values in Poling et al.
- I'd like to try to recreate the "corresponding state" model of Lee et al. for saturation pressure for substances, using SymbolicRegression.jl or similar tools. (Essentially, relating Antoine correlation coefficients to critical values + perhaps some polarity measure)