Skip to content

Commit

Permalink
add Example205 in doc
Browse files Browse the repository at this point in the history
  • Loading branch information
chmerdon committed May 3, 2024
1 parent 6672965 commit 1f9e396
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ function make_all(; with_examples::Bool = true)

modules = [
"Example200_LowLevelPoisson.jl",
"Example205_LowLevelSpaceTimePoisson.jl",
"Example210_LowLevelNavierStokes.jl",
"Example280_BasisPlotter.jl",
"Example281_DiscontinuousPlot.jl",
Expand Down
2 changes: 1 addition & 1 deletion examples/Example205_LowLevelSpaceTimePoisson.jl
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ using Test #
const μ = (t) -> 1e-1*t + 1*max(0,(1-2*t))
const f = (x, t) -> sin(3*pi*x[1])*4*t - cos(3*pi*x[2])*4*(1-t)

function main(; dt = 0.01, Tfinal = 1, level = 5, order = 1, produce_movie = true, Plotter = nothing)
function main(; dt = 0.01, Tfinal = 1, level = 5, order = 1, Plotter = nothing, produce_movie = false )

## Finite element type
FEType_time = H1Pk{1, 1, order}
Expand Down

0 comments on commit 1f9e396

Please sign in to comment.