Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Purge famous people #613

Merged
merged 1 commit into from
Feb 4, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/src/model_setup/boundary_conditions.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ See [Numerical implementation of boundary conditions](@ref numerical_bcs) for mo
## Types of boundary conditions
1. [`Periodic`](@ref Periodic)
2. [`Flux`](@ref Flux)
3. [`Value`](@ref Value) ([`Dirchlet`](@ref))
4. [`Gradient`](@ref Gradient) ([`Neumann`](@ref))
3. [`Value`](@ref Value)
4. [`Gradient`](@ref Gradient)
5. [`No-penetration`](@ref NoPenetration)

Notice that open boundary conditions and radiation boundary conditions can be imposed via flux or value boundary
Expand Down
4 changes: 2 additions & 2 deletions src/BoundaryConditions/BoundaryConditions.jl
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
module BoundaryConditions

export
BCType, Periodic, Flux, Gradient, Value, NoPenetration, Dirchlet, Neumann,
BCType, Periodic, Flux, Gradient, Value, NoPenetration,
BoundaryCondition, bctype, getbc, setbc!,
CoordinateBoundaryConditions,
FieldBoundaryConditions, HorizontallyPeriodicBCs, ChannelBCs,
SolutionBoundaryConditions, HorizontallyPeriodicSolutionBCs, ChannelSolutionBCs,
TendenciesBoundaryConditions, PressureBoundaryConditions,
TendenciesBoundaryConditions, PressureBoundaryConditions,
DiffusivityBoundaryConditions, DiffusivitiesBoundaryConditions,
ModelBoundaryConditions, BoundaryFunction,
apply_z_bcs!, apply_y_bcs!,
Expand Down
16 changes: 0 additions & 16 deletions src/BoundaryConditions/boundary_condition_types.jl
Original file line number Diff line number Diff line change
Expand Up @@ -55,19 +55,3 @@ to normal velocity components at a wall, where the velocity at the cell face col
at the wall is known and set to zero.
"""
struct NoPenetration <: BCType end

# Famous people

"""
Dirchlet

An alias for the `Value` boundary condition type.
"""
const Dirchlet = Value

"""
Neumann

An alias for the `Gradient` boundary condition type.
"""
const Neumann = Gradient
2 changes: 1 addition & 1 deletion src/Oceananigans.jl
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export

# Boundary conditions
BoundaryCondition,
Periodic, Flux, Gradient, Value, Dirchlet, Neumann,
Periodic, Flux, Gradient, Value,
CoordinateBoundaryConditions, FieldBoundaryConditions, HorizontallyPeriodicBCs, ChannelBCs,
BoundaryConditions, SolutionBoundaryConditions, HorizontallyPeriodicSolutionBCs, ChannelSolutionBCs,
BoundaryFunction, getbc, setbc!,
Expand Down