Mercurial > repos > public > sbplib_julia
comparison src/Grids/manifolds.jl @ 1578:56da785ab576 feature/grids/manifolds
Change to using xi for ConcreteChart
| author | Jonatan Werpers <jonatan@werpers.com> |
|---|---|
| date | Thu, 25 Apr 2024 21:55:01 +0200 |
| parents | d5aa72662161 |
| children | 14d79b13b54f |
comparison
equal
deleted
inserted
replaced
| 1577:d5aa72662161 | 1578:56da785ab576 |
|---|---|
| 93 struct ConcreteChart{D, PST<:ParameterSpace{D}, MT} <: Chart{D} | 93 struct ConcreteChart{D, PST<:ParameterSpace{D}, MT} <: Chart{D} |
| 94 mapping::MT | 94 mapping::MT |
| 95 parameterspace::PST | 95 parameterspace::PST |
| 96 end | 96 end |
| 97 | 97 |
| 98 (c::ConcreteChart)(x̄) = c.mapping(x̄) | 98 (c::ConcreteChart)(ξ) = c.mapping(ξ) |
| 99 parameterspace(c::ConcreteChart) = c.parameterspace | 99 parameterspace(c::ConcreteChart) = c.parameterspace |
| 100 | 100 |
| 101 jacobian(c::ConcreteChart, x) = jacobian(c.mapping, x) | 101 jacobian(c::ConcreteChart, ξ) = jacobian(c.mapping, ξ) |
| 102 | 102 |
| 103 """ | 103 """ |
| 104 Atlas | 104 Atlas |
| 105 | 105 |
| 106 A collection of charts and their connections. | 106 A collection of charts and their connections. |
