diff --git a/src/equations/compressible_navier_stokes_1d.jl b/src/equations/compressible_navier_stokes_1d.jl index 5d09bc1f587..666cd186b33 100644 --- a/src/equations/compressible_navier_stokes_1d.jl +++ b/src/equations/compressible_navier_stokes_1d.jl @@ -23,6 +23,7 @@ Fluid properties such as the dynamic viscosity ``\mu`` can be provided in any co [``\mu``] = kg m⁻¹ s⁻¹. The viscosity ``\mu`` may be a constant or a function of the current state, e.g., depending on temperature (Sutherland's law): ``\mu = \mu(T)``. +In the latter case, the function `mu` needs to have the signature `mu(u, equations)`. The particular form of the compressible Navier-Stokes implemented is ```math diff --git a/src/equations/compressible_navier_stokes_2d.jl b/src/equations/compressible_navier_stokes_2d.jl index 48b68223a60..ddf2f7e85f8 100644 --- a/src/equations/compressible_navier_stokes_2d.jl +++ b/src/equations/compressible_navier_stokes_2d.jl @@ -23,6 +23,7 @@ Fluid properties such as the dynamic viscosity ``\mu`` can be provided in any co [``\mu``] = kg m⁻¹ s⁻¹. The viscosity ``\mu`` may be a constant or a function of the current state, e.g., depending on temperature (Sutherland's law): ``\mu = \mu(T)``. +In the latter case, the function `mu` needs to have the signature `mu(u, equations)`. The particular form of the compressible Navier-Stokes implemented is ```math diff --git a/src/equations/compressible_navier_stokes_3d.jl b/src/equations/compressible_navier_stokes_3d.jl index be80360288e..e3154b21a44 100644 --- a/src/equations/compressible_navier_stokes_3d.jl +++ b/src/equations/compressible_navier_stokes_3d.jl @@ -23,6 +23,7 @@ Fluid properties such as the dynamic viscosity ``\mu`` can be provided in any co [``\mu``] = kg m⁻¹ s⁻¹. The viscosity ``\mu`` may be a constant or a function of the current state, e.g., depending on temperature (Sutherland's law): ``\mu = \mu(T)``. +In the latter case, the function `mu` needs to have the signature `mu(u, equations)`. The particular form of the compressible Navier-Stokes implemented is ```math