annotate src/Grids/multiblockgrids.jl @ 1998:6dd00ea0511a
feature/grids/manifolds
Add check if the logical coordinates are in the parameter space when calling a chart
author |
Jonatan Werpers <jonatan@werpers.com> |
date |
Fri, 25 Apr 2025 08:28:34 +0200 |
parents |
e68669552ed8 |
children |
|
rev |
line source |
1912
|
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()
|