comparison src/Grids/manifolds.jl @ 1942:b8395f69ad80 feature/grids/manifolds

Add boundaries(::Chart) and broken tests
author Jonatan Werpers <jonatan@werpers.com>
date Fri, 07 Feb 2025 14:05:37 +0100
parents 1e3089197397
children 2a923e673cfc
comparison
equal deleted inserted replaced
1941:1e3089197397 1942:b8395f69ad80
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 37
37 # TBD: Should Charts, parameterspaces, Atlases, have boundary names?
38 38
39 """ 39 """
40 Atlas 40 Atlas
41 41
42 A collection of charts and their connections. 42 A collection of charts and their connections.