luminarycloud.params.simulation.material.fluid.viscosity_model

Classes

PrescribedViscosity

Constant dynamic viscosity or tabulated values vs temperature.

Sutherland

Dynamic viscosity as a function of local temperature using Sutherland's Law.

TemperatureDependentViscosity

Tabulated dynamic viscosity values vs temperature.

Package Contents

class PrescribedViscosity

Constant dynamic viscosity or tabulated values vs temperature.

to_code() str
viscosity: float = 1.7894e-05

Value or table for dynamic viscosity.

class Sutherland

Dynamic viscosity as a function of local temperature using Sutherland’s Law.

to_code() str
reference_temperature: float = 273.15

Reference temperature.

reference_viscosity: float = 1.716e-05

Dynamic viscosity at the reference temperature.

sutherland_constant: float = 110.4

Sutherland Constant.

class TemperatureDependentViscosity

Tabulated dynamic viscosity values vs temperature.

to_code() str
viscosity_table: Optional[RectilinearTable] = None

Correlation between dynamic viscosity and temperature.