Skip to content

Commit

Permalink
modified: src/Operators/finitedifference.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
akshaysridhar committed Dec 17, 2024
1 parent b202585 commit e68f2f6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/Operators/finitedifference.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1407,7 +1407,7 @@ stencil_interior_width(::LinVanLeerC2F, velocity, arg, dt) =
((0, 0), (-half - 1, half + 1), (0, 0))

Base.@propagate_inbounds function stencil_interior(
::LinVanLeerC2F,
op::LinVanLeerC2F,
loc,
space,
idx,
Expand All @@ -1425,7 +1425,7 @@ Base.@propagate_inbounds function stencil_interior(
Geometry.LocalGeometry(space, idx, hidx),
)
return Geometry.Contravariant3Vector(
slope_limited_product(vᶠ, a⁻, a⁻⁻, a⁺, a⁺⁺, dt, .bcs.method),
slope_limited_product(vᶠ, a⁻, a⁻⁻, a⁺, a⁺⁺, dt, op.bcs.method),
)
end

Expand Down Expand Up @@ -1475,7 +1475,7 @@ Base.@propagate_inbounds function stencil_right_boundary(
end

Base.@propagate_inbounds function stencil_left_boundary(
::LinVanLeerC2F,
op::LinVanLeerC2F,
bc::ThirdOrderOneSided,
loc,
space,
Expand All @@ -1497,7 +1497,7 @@ Base.@propagate_inbounds function stencil_left_boundary(
end

Base.@propagate_inbounds function stencil_right_boundary(
::LinVanLeerC2F,
op::LinVanLeerC2F,
bc::ThirdOrderOneSided,
loc,
space,
Expand Down Expand Up @@ -2080,7 +2080,7 @@ stencil_interior_width(::TVDSlopeLimitedFlux, A_space, Φ_space, 𝓊_space) =
((-1, 1), (-half - 1, half + 1), (-1, +1))

Base.@propagate_inbounds function stencil_interior(
::TVDSlopeLimitedFlux,
op::TVDSlopeLimitedFlux,
loc,
space,
idx,
Expand Down Expand Up @@ -2119,7 +2119,7 @@ Base.@propagate_inbounds function stencil_interior(
ϕⱼ₊₁,
ϕⱼ₊₂,
rⱼ₊₁₂,
.bcs.method,
op.bcs.method,
),
)
end
Expand Down

0 comments on commit e68f2f6

Please sign in to comment.