|
30 | 30 | md""" |
31 | 31 | # Grid generation and visualization in PDELib.jl |
32 | 32 |
|
33 | | -This notebook shows how to perform grid creation and visualization with the assistance of the packages [ExtendableGrids.jl](https://github.com/j-fu/ExtendableGrids.jl) and [SimplexGridFactory.jl](https://github.com/j-fu/SimplexGridFactory.jl) which are part of the [PDELib.jl](https://github.com/WIAS-BERLIN/PDElib.jl) meta package. |
| 33 | +This notebook shows how to perform grid creation and visualization with the assistance of the packages [ExtendableGrids.jl](https://github.com/WIAS-PDELib/ExtendableGrids.jl) and [SimplexGridFactory.jl](https://github.com/WIAS-PDELib/SimplexGridFactory.jl) which are part of the [PDELib.jl](https://github.com/WIAS-BERLIN/PDElib.jl) meta package. |
34 | 34 |
|
35 | | -Visualization in this notebook is done using the [GridVisualize.jl](https://github.com/j-fu/GridVisualize.jl) package. |
| 35 | +Visualization in this notebook is done using the [GridVisualize.jl](https://github.com/WIAS-PDELib/GridVisualize.jl) package. |
36 | 36 | """ |
37 | 37 |
|
38 | 38 | # ╔═╡ 47103e8f-a4ff-46ed-a632-572a2e194a50 |
39 | 39 | md""" |
40 | 40 | ## 1D grids |
41 | 41 |
|
42 | 42 | 1D grids are created just from arrays of montonically increasing coordinates |
43 | | -using the [simplexgrid](https://j-fu.github.io/ExtendableGrids.jl/stable/simplexgrid/#ExtendableGrids.simplexgrid-Tuple{AbstractVector{T}%20where%20T}) method. |
| 43 | +using the [simplexgrid](https://WIAS-PDELib.github.io/ExtendableGrids.jl/stable/simplexgrid/#ExtendableGrids.simplexgrid-Tuple{AbstractVector{T}%20where%20T}) method. |
44 | 44 | """ |
45 | 45 |
|
46 | 46 | # ╔═╡ 93a0c45e-d6a3-415a-a82c-e4f7e2a09d22 |
@@ -73,7 +73,7 @@ g1.components |
73 | 73 |
|
74 | 74 | # ╔═╡ 28e2e3b0-c168-481b-b467-29e6a5407431 |
75 | 75 | md""" |
76 | | -Components can be accessed via `[ ]`. In fact the keys in the dictionary of components are [types](https://j-fu.github.io/ExtendableGrids.jl/stable/tdict/). |
| 76 | +Components can be accessed via `[ ]`. In fact the keys in the dictionary of components are [types](https://WIAS-PDELib.github.io/ExtendableGrids.jl/stable/tdict/). |
77 | 77 | """ |
78 | 78 |
|
79 | 79 | # ╔═╡ f04017d7-1c55-4118-8467-1e134259e35d |
@@ -209,7 +209,7 @@ g2d1.components |
209 | 209 | md""" |
210 | 210 | ### Unstructured grids |
211 | 211 |
|
212 | | -For the triangulation of unstructured grids, we use the mesh generator Triangle via the [Triangulate.jl](https://github.com/JuliaGeometry/Triangulate.jl) and [SimplexGridFactory.jl](https://github.com/j-fu/SimplexGridFactory.jl) packages. |
| 212 | +For the triangulation of unstructured grids, we use the mesh generator Triangle via the [Triangulate.jl](https://github.com/JuliaGeometry/Triangulate.jl) and [SimplexGridFactory.jl](https://github.com/WIAS-PDELib/SimplexGridFactory.jl) packages. |
213 | 213 |
|
214 | 214 | The later package exports the `SimplexGridBuilder` which shall help to simplify the creation of the input for `Triangulate`. |
215 | 215 | """ |
|
0 commit comments