Mercurial > repos > public > sbplib_julia
view src/Grids/multiblockgrids.jl @ 1999:a1b2453c02c9 feature/grids/manifolds
Add check in jacobian for the coordinate to be in the parameterspace of the chart
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Fri, 25 Apr 2025 16:05:58 +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()