Skip to content

Commit 73691fc

Browse files
Fix docstring flux_parabolic (#2454)
* Fix docstring `flux_parabolic` Did not get rendered correctly, see: * Update src/solvers/solvers_parabolic.jl * Update src/solvers/solvers_parabolic.jl Co-authored-by: Hendrik Ranocha <[email protected]>
1 parent 4e7e749 commit 73691fc

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/solvers/solvers_parabolic.jl

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ In the latter case, the [`ViscousFormulationLocalDG`](@ref) scheme is recommende
2020
struct ViscousFormulationBassiRebay1 end
2121

2222
"""
23-
flux_parabolic(u_ll, u_rr, gradient_or_divergence, mesh, equations,
24-
parabolic_scheme::ViscousFormulationBassiRebay1)
23+
flux_parabolic(u_ll, u_rr, gradient_or_divergence, mesh, equations,
24+
parabolic_scheme::ViscousFormulationBassiRebay1)
2525
2626
This computes the classical BR1 flux. Since the interface flux for both the
2727
DG gradient and DG divergence under BR1 are identical, this function does
@@ -66,11 +66,11 @@ Cockburn and Dong proved that this scheme is still stable despite the zero penal
6666
ViscousFormulationLocalDG() = ViscousFormulationLocalDG(nothing)
6767

6868
"""
69-
flux_parabolic(u_ll, u_rr, ::Gradient, mesh::TreeMesh, equations,
70-
parabolic_scheme::ViscousFormulationLocalDG)
69+
flux_parabolic(u_ll, u_rr, ::Gradient, mesh::TreeMesh, equations,
70+
parabolic_scheme::ViscousFormulationLocalDG)
7171
72-
flux_parabolic(u_ll, u_rr, ::Divergence, mesh::TreeMesh, equations,
73-
parabolic_scheme::ViscousFormulationLocalDG)
72+
flux_parabolic(u_ll, u_rr, ::Divergence, mesh::TreeMesh, equations,
73+
parabolic_scheme::ViscousFormulationLocalDG)
7474
7575
These fluxes computes the gradient and divergence interface fluxes for the
7676
local DG method. The local DG method uses an "upwind/downwind" flux for the

0 commit comments

Comments
 (0)