Skip to content

Commit

Permalink
mention dim
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielDoehring committed Dec 30, 2024
1 parent 443c75d commit 9e68b05
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/equations/hyperbolic_diffusion_2d.jl
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ end
flux_godunov(u_ll, u_rr, orientation_or_normal_direction,
equations::HyperbolicDiffusionEquations2D)
Godunov (upwind) flux for the hyperbolic diffusion equations.
Godunov (upwind) flux for the 2D hyperbolic diffusion equations.
"""
@inline function flux_godunov(u_ll, u_rr, orientation::Integer,
equations::HyperbolicDiffusionEquations2D)
Expand Down
2 changes: 1 addition & 1 deletion src/equations/hyperbolic_diffusion_3d.jl
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ end
flux_godunov(u_ll, u_rr, orientation_or_normal_direction,
equations::HyperbolicDiffusionEquations3D)
Godunov (upwind) flux for the hyperbolic diffusion equations.
Godunov (upwind) flux for the 3D hyperbolic diffusion equations.
"""
@inline function flux_godunov(u_ll, u_rr, orientation::Integer,
equations::HyperbolicDiffusionEquations3D)
Expand Down
2 changes: 1 addition & 1 deletion src/equations/lattice_boltzmann_2d.jl
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ end
flux_godunov(u_ll, u_rr, orientation,
equations::LatticeBoltzmannEquations2D)
Godunov (upwind) flux for the Lattice-Boltzmann equations.
Godunov (upwind) flux for the 2D Lattice-Boltzmann equations.
"""
@inline function flux_godunov(u_ll, u_rr, orientation::Integer,
equations::LatticeBoltzmannEquations2D)
Expand Down
2 changes: 1 addition & 1 deletion src/equations/lattice_boltzmann_3d.jl
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ end
flux_godunov(u_ll, u_rr, orientation,
equations::LatticeBoltzmannEquations3D)
Godunov (upwind) flux for the Lattice-Boltzmann equations.
Godunov (upwind) flux for the 3D Lattice-Boltzmann equations.
"""
@inline function flux_godunov(u_ll, u_rr, orientation::Integer,
equations::LatticeBoltzmannEquations3D)
Expand Down
2 changes: 1 addition & 1 deletion src/equations/linear_scalar_advection_1d.jl
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ end
flux_godunov(u_ll, u_rr, orientation,
equations::LinearScalarAdvectionEquation1D)
Godunov (upwind) flux for the linear scalar advection equation.
Godunov (upwind) flux for the 1D linear scalar advection equation.
Essentially first order upwind, see e.g. https://math.stackexchange.com/a/4355076/805029 .
"""
function flux_godunov(u_ll, u_rr, orientation::Int,
Expand Down
2 changes: 1 addition & 1 deletion src/equations/linear_scalar_advection_2d.jl
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ end
flux_godunov(u_ll, u_rr, orientation_or_normal_direction,
equations::LinearScalarAdvectionEquation2D)
Godunov (upwind) flux for the linear scalar advection equation.
Godunov (upwind) flux for the 2D linear scalar advection equation.
Essentially first order upwind, see e.g. https://math.stackexchange.com/a/4355076/805029 .
"""
function flux_godunov(u_ll, u_rr, orientation::Integer,
Expand Down
2 changes: 1 addition & 1 deletion src/equations/linear_scalar_advection_3d.jl
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ end
flux_godunov(u_ll, u_rr, orientation_or_normal_direction,
equations::LinearScalarAdvectionEquation3D)
Godunov (upwind) flux for the linear scalar advection equation.
Godunov (upwind) flux for the 3D linear scalar advection equation.
Essentially first order upwind, see e.g. https://math.stackexchange.com/a/4355076/805029 .
"""
function flux_godunov(u_ll, u_rr, orientation::Integer,
Expand Down

0 comments on commit 9e68b05

Please sign in to comment.