Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Andrew Winters <[email protected]>
  • Loading branch information
DanielDoehring and andrewwinters5000 authored Mar 18, 2024
1 parent 40287d0 commit 319005e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ using Trixi
# semidiscretization of the compressible Navier-Stokes equations

prandtl_number() = 0.72
mu(u, equations) = 6.25e-4
mu(u, equations) = 6.25e-4 # equivalent to Re = 1600

equations = CompressibleEulerEquations3D(1.4)
equations_parabolic = CompressibleNavierStokesDiffusion3D(equations, mu = mu,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ using Trixi
# semidiscretization of the compressible Navier-Stokes equations

prandtl_number() = 0.72
mu(u, equations) = 6.25e-4
mu(u, equations) = 6.25e-4 # equivalent to Re = 1600

equations = CompressibleEulerEquations1D(1.4)
equations_parabolic = CompressibleNavierStokesDiffusion1D(equations, mu = mu,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ using Trixi
# semidiscretization of the compressible Navier-Stokes equations

prandtl_number() = 0.72
mu(u, equations) = 1.0 / 3.0 * 10^(-5) # equivalent to Re = 30,000
mu(u, equations) = 1.0 / 3.0 * 10^(-4) # equivalent to Re = 30,000

equations = CompressibleEulerEquations2D(1.4)
equations_parabolic = CompressibleNavierStokesDiffusion2D(equations, mu = mu,
Expand Down

0 comments on commit 319005e

Please sign in to comment.