Transport Properties
After constructing a model, transport properties can be calculated (if respective parameters are available). The call for all this is always of the form:
transport_property(model, p, T, x=[1.]; phase=:unkwown)
where
modelis aAbstractTransportPropertyModel,pis the pressure ([p] = Pa),Tis the temperature ([T] = K),xis the mole fraction ([x] = mol mol⁻¹), andphaseis the desired phase (liquidorgas) used in the volume solver.
Internally, the density is always calculated first and then the function EntropyScaling.ϱT_transport_property(model, ϱ, T, x) is called (with [ϱ] = mol m⁻³).
EntropyScaling.viscosity — Function
viscosity(model::EntropyScalingModel, p, T, z=[1.]; phase=:unknown)Viscosity η(p,T,x) ([η] = Pa s).
EntropyScaling.thermal_conductivity — Function
thermal_conductivity(model::EntropyScalingModel, p, T, z=[1.]; phase=:unknown)Thermal conductivity λ(p,T,x) ([λ] = W m⁻¹ K⁻¹).
EntropyScaling.self_diffusion_coefficient — Function
self_diffusion_coefficient(model::EntropyScalingModel, p, T, z=[1.]; phase=:unknown)Self-diffusion coefficient D(p,T,x) ([D] = m² s⁻¹).
EntropyScaling.MS_diffusion_coefficient — Function
MS_diffusion_coefficient(model::EntropyScalingModel, p, T, z; phase=:unknown)Maxwell-Stefan diffusion coefficient Ð(p,T,x) ([Ð] = m² s⁻¹).
EntropyScaling.fick_diffusion_coefficient — Function
fick_diffusion_coefficient(model::EntropyScalingModel, p, T, z; phase=:unknown)Fickian diffusion coefficient D(p,T,x) ([D] = m² s⁻¹).
EntropyScaling.inf_diffusion_coefficient — Function
inf_diffusion_coefficient(model::EntropyScalingModel, p, T, z; phase=:unknown, solute=nothing, solvent=nothing)Returns all diffusion coefficients at infinite dilution of the system (if parameters are available):
[D₁ D₁₂ ⋯ D₁ₙ;
D₂₁ D₂ ⋯ D₂ₙ;
⋮ ⋮ ⋱ ⋮
Dₙ₁ Dₙ₂ ⋯ Dₙ]Dᵢⱼ is the diffusion coefficient of solute i at infinite dilution in solvent j. If solute or solvent is specified, returns only the infinite diffusion coefficients in this component (one row or column of the matrix). If both solute and solvent are specified, a scalar value is returned.