Skip to content

Commit

Permalink
Formating
Browse files Browse the repository at this point in the history
  • Loading branch information
jagoosw committed Dec 6, 2024
1 parent b55395c commit e66f3d1
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ end

const PAOBC = BoundaryCondition{<:Open{<:PerturbationAdvection}}

@inline function step_right_boundary_node!(bc, l, m, boundary_indices, boundary_adjacent_indices,
grid, u, clock, model_fields, ΔX)
@inline function step_right_boundary!(bc, l, m, boundary_indices, boundary_adjacent_indices,
grid, u, clock, model_fields, ΔX)
Δt = clock.last_stage_Δt

Δt = ifelse(isinf(Δt), 0, Δt)
Expand All @@ -60,8 +60,8 @@ const PAOBC = BoundaryCondition{<:Open{<:PerturbationAdvection}}
end


@inline function step_left_boundary_node!(bc, l, m, boundary_indices, boundary_adjacent_indices, boundary_secret_storage_indices,
grid, u, clock, model_fields, ΔX)
@inline function step_left_boundary!(bc, l, m, boundary_indices, boundary_adjacent_indices, boundary_secret_storage_indices,
grid, u, clock, model_fields, ΔX)
Δt = clock.last_stage_Δt

Δt = ifelse(isinf(Δt), 0, Δt)
Expand Down Expand Up @@ -95,7 +95,7 @@ end

Δx = xspacing(i, j, k, grid, loc...)

step_right_boundary_node!(bc, j, k, boundary_indices, boundary_adjacent_indices, grid, u, clock, model_fields, Δx)
step_right_boundary!(bc, j, k, boundary_indices, boundary_adjacent_indices, grid, u, clock, model_fields, Δx)

return nothing
end
Expand All @@ -107,7 +107,7 @@ end

Δx = xspacing(1, j, k, grid, loc...)

step_left_boundary_node!(bc, j, k, boundary_indices, boundary_adjacent_indices, boundary_secret_storage_indices, grid, u, clock, model_fields, Δx)
step_left_boundary!(bc, j, k, boundary_indices, boundary_adjacent_indices, boundary_secret_storage_indices, grid, u, clock, model_fields, Δx)

return nothing
end

0 comments on commit e66f3d1

Please sign in to comment.