Ethyl Alcohol (Ethylene)

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

Example:

from scp.ethyl_alcohol import MethylAlcohol

if __name__ == "__main__":
    x_fraction = 0.2  # concentration fraction
    ea = EthylAlcohol(x_fraction)

    temp = 10  # Celsius
    print(ea.viscosity(temp))
class scp.ethyl_alcohol.EthylAlcohol(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: “EthylAlcohol”