Mercurial > repos > public > sbplib_julia
comparison src/Grids/multiblockgrids.jl @ 1951:6c1bb9bdb092 feature/grids/geometry_functions
Merge feature/grids/manifolds
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Fri, 07 Feb 2025 22:38:39 +0100 |
parents | e68669552ed8 |
children |
comparison
equal
deleted
inserted
replaced
1916:6859089b361e | 1951:6c1bb9bdb092 |
---|---|
1 """ | |
2 MultiBlockBoundary{N, BID} <: BoundaryIdentifier | |
3 | |
4 A boundary identifier for a multiblock grids. `N` Specifies which grid and | |
5 `BID` which boundary on that grid. | |
6 """ | |
7 struct MultiBlockBoundary{N, BID} <: BoundaryIdentifier end | |
8 grid_id(::MultiBlockBoundary{N, BID}) where {N, BID} = N | |
9 boundary_id(::MultiBlockBoundary{N, BID}) where {N, BID} = BID() |