view src/BoundaryConditions/BoundaryConditions.jl @ 1601:fad18896d20a feature/boundary_conditions

REVIEW: Comment on operator toml
author Jonatan Werpers <jonatan@werpers.com>
date Wed, 29 May 2024 23:28:33 +0200
parents 37b05221beda
children 3e7438e2a033
line wrap: on
line source

module BoundaryConditions

# REVIEW: Does this need to be in a separate module? I feel like it fits quite well into SbpOperators.

export BoundaryCondition
export discretize_data
export data # REVIEW: Name too generic to export.
export id # REVIEW: Also to generic. Change to `boundary`?

export NeumannCondition
export DirichletCondition

export sat
export sat_tensors

using Sbplib.Grids
using Sbplib.LazyTensors

include("boundary_condition.jl")
include("sat.jl")

end # module