comparison src/Grids/grid.jl @ 1751:f3d7e2d7a43f feature/sbp_operators/laplace_curvilinear

Merge feature/grids/manifolds
author Jonatan Werpers <jonatan@werpers.com>
date Wed, 11 Sep 2024 16:26:19 +0200
parents 03894fd7b132
children 76c6bde84656
comparison
equal deleted inserted replaced
1731:3684db043add 1751:f3d7e2d7a43f
107 See also: [`refine`](@ref). 107 See also: [`refine`](@ref).
108 """ 108 """
109 function coarsen end 109 function coarsen end
110 110
111 """ 111 """
112 BoundaryIdentifier
113
114 An identifier for a boundary of a grid.
115 """
116 abstract type BoundaryIdentifier end
117
118 """
112 boundary_identifiers(g::Grid) 119 boundary_identifiers(g::Grid)
113 120
114 Identifiers for all the boundaries of `g`. 121 Identifiers for all the boundaries of `g`.
115 """ 122 """
116 function boundary_identifiers end 123 function boundary_identifiers end