Ethylene Glycol

Provides fluid properties for aqueous mixtures of Ethylene Glycol for temperatures <= 100 C, with concentrations from 0-0.6.

Example:

from scp.ethylene_glycol import EthyleneGlycol

if __name__ == "__main__":
    x_fraction = 0.2  # concentration fraction
    eg = EthyleneGlycol(x_fraction)

    temp = 10  # Celsius
    print(eg.viscosity(temp))
class scp.ethylene_glycol.EthyleneGlycol(x: float)[source]

Bases: BaseMelinder

A derived fluid class for ethylene glycol and water mixtures

coefficient_conductivity() Tuple[source]

Abstract method; derived classes should override to return the coefficient matrix for conductivity.

coefficient_density() Tuple[source]

Abstract method; derived classes should override to return the coefficient matrix for density.

coefficient_freezing() Tuple[source]

Abstract method; derived classes should override to return the coefficient matrix for freezing point.

coefficient_specific_heat() Tuple[source]

Abstract method; derived classes should override to return the coefficient matrix for specific heat.

coefficient_viscosity() Tuple[source]

Abstract method; derived classes should override to return the coefficient matrix for viscosity.

property fluid_name: str

Returns a descriptive title for this fluid @return: “EthyleneGlycol”