Skip to content

Commit 9e68b05

Browse files
mention dim
1 parent 443c75d commit 9e68b05

7 files changed

+7
-7
lines changed

src/equations/hyperbolic_diffusion_2d.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ end
178178
flux_godunov(u_ll, u_rr, orientation_or_normal_direction,
179179
equations::HyperbolicDiffusionEquations2D)
180180
181-
Godunov (upwind) flux for the hyperbolic diffusion equations.
181+
Godunov (upwind) flux for the 2D hyperbolic diffusion equations.
182182
"""
183183
@inline function flux_godunov(u_ll, u_rr, orientation::Integer,
184184
equations::HyperbolicDiffusionEquations2D)

src/equations/hyperbolic_diffusion_3d.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ end
192192
flux_godunov(u_ll, u_rr, orientation_or_normal_direction,
193193
equations::HyperbolicDiffusionEquations3D)
194194
195-
Godunov (upwind) flux for the hyperbolic diffusion equations.
195+
Godunov (upwind) flux for the 3D hyperbolic diffusion equations.
196196
"""
197197
@inline function flux_godunov(u_ll, u_rr, orientation::Integer,
198198
equations::HyperbolicDiffusionEquations3D)

src/equations/lattice_boltzmann_2d.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ end
257257
flux_godunov(u_ll, u_rr, orientation,
258258
equations::LatticeBoltzmannEquations2D)
259259
260-
Godunov (upwind) flux for the Lattice-Boltzmann equations.
260+
Godunov (upwind) flux for the 2D Lattice-Boltzmann equations.
261261
"""
262262
@inline function flux_godunov(u_ll, u_rr, orientation::Integer,
263263
equations::LatticeBoltzmannEquations2D)

src/equations/lattice_boltzmann_3d.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ end
247247
flux_godunov(u_ll, u_rr, orientation,
248248
equations::LatticeBoltzmannEquations3D)
249249
250-
Godunov (upwind) flux for the Lattice-Boltzmann equations.
250+
Godunov (upwind) flux for the 3D Lattice-Boltzmann equations.
251251
"""
252252
@inline function flux_godunov(u_ll, u_rr, orientation::Integer,
253253
equations::LatticeBoltzmannEquations3D)

src/equations/linear_scalar_advection_1d.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ end
145145
flux_godunov(u_ll, u_rr, orientation,
146146
equations::LinearScalarAdvectionEquation1D)
147147
148-
Godunov (upwind) flux for the linear scalar advection equation.
148+
Godunov (upwind) flux for the 1D linear scalar advection equation.
149149
Essentially first order upwind, see e.g. https://math.stackexchange.com/a/4355076/805029 .
150150
"""
151151
function flux_godunov(u_ll, u_rr, orientation::Int,

src/equations/linear_scalar_advection_2d.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ end
243243
flux_godunov(u_ll, u_rr, orientation_or_normal_direction,
244244
equations::LinearScalarAdvectionEquation2D)
245245
246-
Godunov (upwind) flux for the linear scalar advection equation.
246+
Godunov (upwind) flux for the 2D linear scalar advection equation.
247247
Essentially first order upwind, see e.g. https://math.stackexchange.com/a/4355076/805029 .
248248
"""
249249
function flux_godunov(u_ll, u_rr, orientation::Integer,

src/equations/linear_scalar_advection_3d.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ end
162162
flux_godunov(u_ll, u_rr, orientation_or_normal_direction,
163163
equations::LinearScalarAdvectionEquation3D)
164164
165-
Godunov (upwind) flux for the linear scalar advection equation.
165+
Godunov (upwind) flux for the 3D linear scalar advection equation.
166166
Essentially first order upwind, see e.g. https://math.stackexchange.com/a/4355076/805029 .
167167
"""
168168
function flux_godunov(u_ll, u_rr, orientation::Integer,

0 commit comments

Comments
 (0)