Methyl Alcohol (Methylene)

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

Example:

from scp.methyl_alcohol import MethylAlcohol

if __name__ == "__main__":
    x_fraction = 0.2  # concentration fraction
    ma = MethylAlcohol(x_fraction)

    temp = 10  # Celsius
    print(ma.viscosity(temp))
class scp.methyl_alcohol.MethylAlcohol(x: float)[source]

Bases: BaseMelinder

A derived fluid class for methyl alcohol 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: “MethylAlcohol”