Skip to content

Commit 94dc9f4

Browse files
committed
docs with examples should compile now
1 parent 6ef6c47 commit 94dc9f4

8 files changed

+15
-11
lines changed

Diff for: CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# CHANGES
22

3+
4+
## v0.8.1 November 4, 2024
5+
- fixed dimension in nodevals output (xdim was determined wrongly and caused huge arrays)
6+
- examples in the documentation reactivated
7+
38
## v0.8 November 1, 2024
49
- started changelog
510
- fist registered version since repository move (fixed some URL links in the doc and readme)

Diff for: docs/make.jl

+4-5
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ using CairoMakie
88
function make_all(; with_examples::Bool = true)
99

1010
module_examples = []
11-
pluto_examples = []
11+
pluto_examples = []
1212

1313
if with_examples
1414

@@ -43,12 +43,11 @@ function make_all(; with_examples::Bool = true)
4343
modules=[ExtendableFEMBase],
4444
sitename="ExtendableFEMBase.jl",
4545
authors="Christian Merdon",
46-
repo = "https://github.com/WIAS-PDELib/ExtendableFEMBase.jl",
47-
clean = true,
48-
format = Documenter.HTML(size_threshold = 250000, mathengine = MathJax3()),
46+
format = Documenter.HTML(repolink = "https://github.com/WIAS-PDELib/ExtendableFEMBase.jl", size_threshold = 250000, mathengine = MathJax3()),
47+
clean = false,
4948
checkdocs = :all,
5049
warnonly = false,
51-
doctest = true,
50+
doctest = false,
5251
pages = [
5352
"Home" => "index.md",
5453
"Index" => "package_index.md",

Diff for: examples/Example200_LowLevelPoisson.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#=
22
33
# 200 : Poisson Problem
4-
([source code](SOURCE_URL))
4+
([source code](@__SOURCE_URL__))
55
66
This example computes the solution ``u`` of the two-dimensional Poisson problem
77
```math

Diff for: examples/Example205_LowLevelSpaceTimePoisson.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#=
22
33
# 205 : Space-Time FEM for Poisson Problem
4-
([source code](SOURCE_URL))
4+
([source code](@__SOURCE_URL__))
55
66
This example computes the solution ``u`` of the
77
two-dimensional heat equation

Diff for: examples/Example210_LowLevelNavierStokes.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#=
22
33
# 210 : Navier-Stokes Problem
4-
([source code](SOURCE_URL))
4+
([source code](@__SOURCE_URL__))
55
66
Consider the Navier-Stokes problem that seeks ``u`` and ``p`` such that
77
```math

Diff for: examples/Example280_BasisPlotter.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#=
22
33
# 280 : Basis-Plotter
4-
([source code](SOURCE_URL))
4+
([source code](@__SOURCE_URL__))
55
66
This example plots all the basis functions of a H1 finite element on Edge1D or Triangle2D
77
as unicode plots. This is the result with the default parameters (dim = 1, order = 3):

Diff for: examples/Example281_DiscontinuousPlot.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#=
22
33
# 281 : Discontinuous Plot
4-
([source code](SOURCE_URL))
4+
([source code](@__SOURCE_URL__))
55
66
This example demonstrates how to plot a discontinuous function
77
on a grid with two regions by region-wise nodal values and plotting.

Diff for: examples/Example290_InterpolationBetweenMeshes.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#=
22
33
# 290 : Interpolation Between Meshes
4-
([source code](SOURCE_URL))
4+
([source code](@__SOURCE_URL__))
55
66
This example demonstrates the interpolation between meshes feature. Here, we interpolate a function with the P2 element of a coarse triangulation and then interpolate
77
this P2 function on two uniform refinements into some P1 function. Then, both finite element functions are plotted.

0 commit comments

Comments
 (0)