Mercurial > repos > public > sbplib_julia
view src/Grids/multiblockgrids.jl @ 2015:5c2448d6a201 feature/grids/geometry_functions tip
Structure tests a bit more
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Fri, 09 May 2025 15:57:38 +0200 |
parents | e68669552ed8 |
children |
line wrap: on
line source
""" MultiBlockBoundary{N, BID} <: BoundaryIdentifier A boundary identifier for a multiblock grids. `N` Specifies which grid and `BID` which boundary on that grid. """ struct MultiBlockBoundary{N, BID} <: BoundaryIdentifier end grid_id(::MultiBlockBoundary{N, BID}) where {N, BID} = N boundary_id(::MultiBlockBoundary{N, BID}) where {N, BID} = BID()