comparison src/Grids/manifolds.jl @ 1944:2a923e673cfc feature/grids/manifolds

Add boundary_identifiers for Chart
author Jonatan Werpers <jonatan@werpers.com>
date Fri, 07 Feb 2025 15:56:04 +0100
parents b8395f69ad80
children 19efb9dacfff
comparison
equal deleted inserted replaced
1943:48c49c04f3b2 1944:2a923e673cfc
31 which will both allow calling `jacobian(c,ξ)`. 31 which will both allow calling `jacobian(c,ξ)`.
32 """ 32 """
33 jacobian(c::Chart, ξ) = jacobian(c.mapping, ξ) 33 jacobian(c::Chart, ξ) = jacobian(c.mapping, ξ)
34 # TBD: Can we register a error hint for when jacobian is called with a function that doesn't have a registered jacobian? 34 # TBD: Can we register a error hint for when jacobian is called with a function that doesn't have a registered jacobian?
35 35
36 boundaries(c::Chart) = boundaries(parameterspace(c)) 36 boundaries(c::Chart) = boundary_identifiers(parameterspace(c))
37 37
38 38
39 """ 39 """
40 Atlas 40 Atlas
41 41