Skip to content

Commit

Permalink
add docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
jlchan committed May 16, 2024
1 parent 2a857d9 commit 3f717ba
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/cut_cell_meshes.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1009,6 +1009,17 @@ function MeshData(rd::RefElemData, objects,

end

"""
hybridized_SBP_operators(md::MeshData{2, <:CutCellMesh})
This constructs hybridized SBP operators using the approach taken in Chan (2019),
"Skew-Symmetric Entropy Stable Modal Discontinuous Galerkin Formulations".
[https://doi.org/10.1007/s10915-019-01026-w](https://doi.org/10.1007/s10915-019-01026-w)
This function returns `hybridized_operators::Vector{Tuple{<:Matrix, <:Matrix}}` and
`project_and_interp_operators, projection_operators, interpolation_operators`, which are
all `Vector{<:Matrix}`, where each entry corresponds to a cut element.
"""
function hybridized_SBP_operators(md::MeshData{2, <:CutCellMesh})
mt = md.mesh_type
(; volume_interpolation_matrices,
Expand Down

0 comments on commit 3f717ba

Please sign in to comment.