Mercurial > repos > public > sbplib_julia
annotate src/Grids/manifolds.jl @ 1577:d5aa72662161 feature/grids/manifolds
Change to expect the jacobian of a chart to take x as an argument
| author | Jonatan Werpers <jonatan@werpers.com> |
|---|---|
| date | Thu, 25 Apr 2024 21:53:06 +0200 |
| parents | a7245343eb98 |
| children | 56da785ab576 |
| rev | line source |
|---|---|
| 1558 | 1 """ |
| 2 ParameterSpace{D} | |
| 3 | |
| 4 A space of parameters of dimension `D`. Used with `Chart` to indicate which | |
| 5 parameters are valid for that chart. | |
| 6 | |
| 7 Common parameter spaces are created using the functions unit sized spaces | |
| 8 * `unitinterval` | |
| 9 * `unitrectangle` | |
| 10 * `unitbox` | |
| 11 * `unittriangle` | |
| 12 * `unittetrahedron` | |
| 13 * `unithyperbox` | |
| 14 * `unitsimplex` | |
| 15 | |
| 16 See also: [`Interval`](@ref), [`Rectangle`](@ref), [`Box`](@ref), | |
| 17 [`Triangle`](@ref), [`Tetrahedron`](@ref), [`HyperBox`](@ref), | |
| 18 [`Simplex`](@ref), | |
| 19 """ | |
| 20 abstract type ParameterSpace{D} end | |
| 21 | |
| 22 struct HyperBox{T,D} <: ParameterSpace{D} | |
| 23 a::SVector{D,T} | |
| 24 b::SVector{D,T} | |
| 25 end | |
| 26 | |
| 27 function HyperBox(a,b) | |
| 28 T = SVector{length(a)} | |
| 29 HyperBox(convert(T,a), convert(T,b)) | |
| 30 end | |
| 31 | |
| 32 Interval{T} = HyperBox{T,1} | |
| 33 Rectangle{T} = HyperBox{T,2} | |
| 34 Box{T} = HyperBox{T,3} | |
| 35 | |
| 36 limits(box::HyperBox, d) = (box.a[d], box.b[d]) | |
| 37 limits(box::HyperBox) = (box.a, box.b) | |
| 38 | |
| 39 unitinterval(T=Float64) = unithyperbox(T,1) | |
| 40 unitsquare(T=Float64) = unithyperbox(T,2) | |
| 41 unitcube(T=Float64) = unithyperbox(T,3) | |
| 42 unithyperbox(T, D) = HyperBox((@SVector zeros(T,D)), (@SVector ones(T,D))) | |
| 43 unithyperbox(D) = unithyperbox(Float64,D) | |
| 44 | |
| 45 | |
| 46 struct Simplex{T,D} <: ParameterSpace{D} | |
| 47 verticies::NTuple{D,SVector{D,T}} | |
| 48 end | |
| 49 | |
|
1564
35fe4375b35f
Export things and fix ConcreteChart and Simplex
Jonatan Werpers <jonatan@werpers.com>
parents:
1558
diff
changeset
|
50 Simplex(verticies::Vararg{AbstractArray}) = Simplex(Tuple(SVector(v...) for v ∈ verticies)) |
|
35fe4375b35f
Export things and fix ConcreteChart and Simplex
Jonatan Werpers <jonatan@werpers.com>
parents:
1558
diff
changeset
|
51 |
| 1558 | 52 Triangle{T} = Simplex{T,2} |
| 53 Tetrahedron{T} = Simplex{T,3} | |
| 54 | |
| 55 unittriangle(T) = unitsimplex(T,2) | |
| 56 unittetrahedron(T) = unitsimplex(T,3) | |
| 57 function unitsimplex(T,D) | |
| 58 z = @SVector zeros(T,D) | |
| 59 unitelement = one(eltype(z)) | |
| 60 verticies = ntuple(i->setindex(z, unitelement, i), 4) | |
| 61 return Simplex(verticies) | |
| 62 end | |
| 63 | |
| 64 | |
| 65 """ | |
| 66 | |
| 67 A parametrized description of a manifold or part of a manifold. | |
| 68 | |
| 69 Should implement a methods for | |
| 70 * `parameterspace` | |
| 71 * `(::Chart)(ξs...)` | |
| 72 """ | |
| 73 abstract type Chart{D} end | |
| 74 # abstract type Chart{D,R} end | |
| 75 | |
| 76 domain_dim(::Chart{D}) where D = D | |
| 77 # range_dim(::Chart{D,R}) where {D,R} = R | |
| 78 | |
| 79 """ | |
| 80 The parameterspace of a chart | |
| 81 """ | |
| 82 function parameterspace end | |
| 83 | |
| 84 | |
| 1568 | 85 # TODO: Add trait for if there is a jacobian available? |
| 86 # Add package extension to allow calling the getter function anyway if it's not available | |
| 87 # And can we add an informative error that ForwardDiff could be loaded to make it work? | |
| 88 # Or can we handle this be custom implementations? For sometypes in the library it can be implemented explicitly. | |
| 89 # And as an example for ConcreteChart it can be implemented by the user like | |
| 90 # c = ConcreteChart(...) | |
| 91 # jacobian(c::typeof(c)) = ... | |
| 92 | |
|
1564
35fe4375b35f
Export things and fix ConcreteChart and Simplex
Jonatan Werpers <jonatan@werpers.com>
parents:
1558
diff
changeset
|
93 struct ConcreteChart{D, PST<:ParameterSpace{D}, MT} <: Chart{D} |
|
35fe4375b35f
Export things and fix ConcreteChart and Simplex
Jonatan Werpers <jonatan@werpers.com>
parents:
1558
diff
changeset
|
94 mapping::MT |
| 1558 | 95 parameterspace::PST |
| 96 end | |
| 97 | |
|
1572
157c43966b06
Add some tests and implement parameterspace for ConcreteChart
Jonatan Werpers <jonatan@werpers.com>
parents:
1568
diff
changeset
|
98 (c::ConcreteChart)(x̄) = c.mapping(x̄) |
|
157c43966b06
Add some tests and implement parameterspace for ConcreteChart
Jonatan Werpers <jonatan@werpers.com>
parents:
1568
diff
changeset
|
99 parameterspace(c::ConcreteChart) = c.parameterspace |
| 1558 | 100 |
|
1577
d5aa72662161
Change to expect the jacobian of a chart to take x as an argument
Jonatan Werpers <jonatan@werpers.com>
parents:
1576
diff
changeset
|
101 jacobian(c::ConcreteChart, x) = jacobian(c.mapping, x) |
| 1558 | 102 |
| 103 """ | |
| 104 Atlas | |
| 105 | |
| 106 A collection of charts and their connections. | |
| 107 Should implement methods for `charts` and | |
| 108 """ | |
| 109 abstract type Atlas end | |
| 110 | |
| 111 """ | |
| 112 charts(::Atlas) | |
| 113 | |
| 114 The colloction of charts in the atlas. | |
| 115 """ | |
| 116 function charts end | |
| 117 | |
| 118 """ | |
| 119 connections | |
| 120 | |
| 121 TBD: What exactly should this return? | |
| 122 | |
| 123 """ | |
| 124 | |
| 125 struct CartesianAtlas <: Atlas | |
| 126 charts::Matrix{Chart} | |
| 127 end | |
| 128 | |
| 129 charts(a::CartesianAtlas) = a.charts | |
| 130 | |
| 131 struct UnstructuredAtlas <: Atlas | |
| 132 charts::Vector{Chart} | |
| 133 connections | |
| 134 end | |
| 135 | |
| 136 charts(a::UnstructuredAtlas) = a.charts | |
| 137 | |
| 138 | |
| 139 ### | |
| 140 # Geometry | |
| 141 ### | |
| 142 | |
| 143 abstract type Curve end | |
| 144 abstract type Surface end | |
| 145 | |
| 146 | |
| 147 struct Line{PT} <: Curve | |
| 148 p::PT | |
| 149 tangent::PT | |
| 150 end | |
| 151 | |
| 152 (c::Line)(s) = c.p + s*c.tangent | |
| 153 | |
| 154 | |
| 155 struct LineSegment{PT} <: Curve | |
| 156 a::PT | |
| 157 b::PT | |
| 158 end | |
| 159 | |
| 160 (c::LineSegment)(s) = (1-s)*c.a + s*c.b | |
| 161 | |
| 162 | |
| 163 struct Circle{T,PT} <: Curve | |
| 164 c::PT | |
| 165 r::T | |
| 166 end | |
| 167 | |
| 168 (c::Circle)(θ) = c.c + r*@SVector[cos(Θ), sin(Θ)] | |
| 169 | |
| 170 struct TransfiniteInterpolationSurface{T1,T2,T3,T4} <: Surface | |
| 171 c₁::T1 | |
| 172 c₂::T2 | |
| 173 c₃::T3 | |
| 174 c₄::T4 | |
| 175 end | |
| 176 | |
| 177 function (s::TransfiniteInterpolationSurface)(u,v) | |
| 178 c₁, c₂, c₃, c₄ = s.c₁, s.c₂, s.c₃, s.c₄ | |
| 179 P₀₀ = c₁(0) | |
| 180 P₁₀ = c₂(0) | |
| 181 P₁₁ = c₃(0) | |
| 182 P₀₁ = c₄(0) | |
| 183 return (1-v)*c₁(u) + u*c₂(v) + v*c₃(1-u) + (1-u)*c₄(1-v) - ( | |
| 184 (1-u)*(1-v)*P₀₀ + u*(1-v)*P₁₀ + u*v*P₁₁ + (1-u)*v*P₀₁ | |
| 185 ) | |
| 186 end | |
| 187 | |
| 188 function (s::TransfiniteInterpolationSurface)(ξ̄::AbstractArray) | |
| 189 s(ξ̄...) | |
| 190 end | |
| 191 | |
| 192 | |
| 193 function polygon_sides(Ps...) | |
| 194 n = length(Ps) | |
| 195 return [t->line(t,Ps[i],Ps[mod1(i+1,n)]) for i ∈ eachindex(Ps)] | |
| 196 end |
