Skip to content

Commit 29d4f48

Browse files
committed
update links after move to WIAS-PDELib org
1 parent 26bacf1 commit 29d4f48

8 files changed

Lines changed: 28 additions & 15 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
11
# Changes
2+
## v2.2.1 Nov 2, 2024
3+
- Move repo to WIAS-PDELib org
4+
5+
## v2.2 June 25, 2024
6+
- bregions! without args and kwargs takes all boundaries instead of none.
7+
8+
## v2.1 May 24, 2024
9+
- Use simplexgrid(tetgenio) from ExtendableGrids
10+
- Require Julia 1.9
11+
212
## v2.0 March 21, 2024
313
- Breaking: moved BinnedPointList to ExtendableGrids
414
- Drop Julia 1.6 support, require Julia 1.9

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
[![linux-macos-windows](https://github.com/j-fu/SimplexGridFactory.jl/actions/workflows/ci.yml/badge.svg)](https://github.com/j-fu/SimplexGridFactory.jl/actions/workflows/ci.yml)
2-
[![](https://img.shields.io/badge/docs-stable-blue.svg)](https://j-fu.github.io/SimplexGridFactory.jl/stable)
3-
[![](https://img.shields.io/badge/docs-dev-blue.svg)](https://j-fu.github.io/SimplexGridFactory.jl/dev)
1+
[![linux-macos-windows](https://github.com/WIAS-PDELib/SimplexGridFactory.jl/actions/workflows/ci.yml/badge.svg)](https://github.com/WIAS-PDELib/SimplexGridFactory.jl/actions/workflows/ci.yml)
2+
[![](https://img.shields.io/badge/docs-stable-blue.svg)](https://WIAS-PDELib.github.io/SimplexGridFactory.jl/stable)
3+
[![](https://img.shields.io/badge/docs-dev-blue.svg)](https://WIAS-PDELib.github.io/SimplexGridFactory.jl/dev)
44
[![Aqua QA](https://raw.githubusercontent.com/JuliaTesting/Aqua.jl/master/badge.svg)](https://github.com/JuliaTesting/Aqua.jl)
55

66

@@ -13,4 +13,3 @@ the `TetGen` module as parameter to the constructor of `SimplexGrid
1313
adhere to their respective license conditions. This package itself is MIT licensed.
1414

1515

16-
## Recent [changes](https://j-fu.github.io/SimplexGridFactory.jl/stable/changes)

docs/make.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ function mkdocs()
2525
doctest = false,
2626
clean = false,
2727
authors = "J. Fuhrmann, Ch. Merdon",
28-
repo = "https://github.com/j-fu/SimplexGridFactory.jl",
28+
repo = "https://github.com/WIAS-PDELib/SimplexGridFactory.jl",
2929
pages = [
3030
"Home" => "index.md",
3131
"Changes" => "changes.md",
@@ -42,4 +42,4 @@ end
4242

4343
mkdocs()
4444

45-
deploydocs(; repo = "github.com/j-fu/SimplexGridFactory.jl.git")
45+
deploydocs(; repo = "github.com/WIAS-PDELib/SimplexGridFactory.jl.git")

docs/src/api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Pages = ["options.jl"]
1212

1313
## Test plots
1414
Currently only for PyPlot. For plotting
15-
grids, see [GridVisualize.jl](https://github.com/j-fu/GridVisualize.jl).
15+
grids, see [GridVisualize.jl](https://github.com/WIAS-PDELib/GridVisualize.jl).
1616

1717
```@autodocs
1818
Modules = [SimplexGridFactory]

docs/src/changes.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
````@eval
2+
using Markdown
3+
Markdown.parse(read("../../CHANGELOG.md",String))
4+
````

docs/src/pluto.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Pluto Notebook(s)
22

3-
[PlutoGridFactory](https://github.com/j-fu/SimplexGridFactory.jl/raw/master/examples/PlutoGridFactory.jl)
3+
[PlutoGridFactory](https://github.com/WIAS-PDELib/SimplexGridFactory.jl/raw/master/examples/PlutoGridFactory.jl)
44

55

examples/zzaccessing.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
# ================
44
#
55
# You may want to use the this package to obtain grid data for your application.
6-
# The [ExtendableGrids](https://github.com/j-fu/ExtendableGrids.jl) package provides a lightweight grid data structure which
7-
# in its core is a `Dict{Type,Any}` and the possibility to [dispatch the return type on the key](https://j-fu.github.io/ExtendableGrids.jl/stable/tdict/).
6+
# The [ExtendableGrids](https://github.com/WIAS-PDELib/ExtendableGrids.jl) package provides a lightweight grid data structure which
7+
# in its core is a `Dict{Type,Any}` and the possibility to [dispatch the return type on the key](https://WIAS-PDELib.github.io/ExtendableGrids.jl/stable/tdict/).
88
#
99
function extract_2d()
1010
builder = SimplexGridBuilder(; Generator = Triangulate)

notebooks/gridgenvis.jl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,17 +30,17 @@ end;
3030
md"""
3131
# Grid generation and visualization in PDELib.jl
3232
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.
3434
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.
3636
"""
3737

3838
# ╔═╡ 47103e8f-a4ff-46ed-a632-572a2e194a50
3939
md"""
4040
## 1D grids
4141
4242
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.
4444
"""
4545

4646
# ╔═╡ 93a0c45e-d6a3-415a-a82c-e4f7e2a09d22
@@ -73,7 +73,7 @@ g1.components
7373

7474
# ╔═╡ 28e2e3b0-c168-481b-b467-29e6a5407431
7575
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/).
7777
"""
7878

7979
# ╔═╡ f04017d7-1c55-4118-8467-1e134259e35d
@@ -209,7 +209,7 @@ g2d1.components
209209
md"""
210210
### Unstructured grids
211211
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.
213213
214214
The later package exports the `SimplexGridBuilder` which shall help to simplify the creation of the input for `Triangulate`.
215215
"""

0 commit comments

Comments
 (0)