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:
BaseMelinderA 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”