pub trait EntropyScaling<U: EosUnit> {
    fn viscosity_reference(
        &self,
        temperature: QuantityScalar<U>,
        volume: QuantityScalar<U>,
        moles: &QuantityArray1<U>
    ) -> EosResult<QuantityScalar<U>>; fn viscosity_correlation(
        &self,
        s_res: f64,
        x: &Array1<f64>
    ) -> EosResult<f64>; fn diffusion_reference(
        &self,
        temperature: QuantityScalar<U>,
        volume: QuantityScalar<U>,
        moles: &QuantityArray1<U>
    ) -> EosResult<QuantityScalar<U>>; fn diffusion_correlation(
        &self,
        s_res: f64,
        x: &Array1<f64>
    ) -> EosResult<f64>; fn thermal_conductivity_reference(
        &self,
        temperature: QuantityScalar<U>,
        volume: QuantityScalar<U>,
        moles: &QuantityArray1<U>
    ) -> EosResult<QuantityScalar<U>>; fn thermal_conductivity_correlation(
        &self,
        s_res: f64,
        x: &Array1<f64>
    ) -> EosResult<f64>; }
Expand description

Reference values and residual entropy correlations for entropy scaling.

Required methods

Implementors