From 13195868f8e15dc972726b664c6670734a033cf9 Mon Sep 17 00:00:00 2001 From: ghislainb Date: Fri, 12 Jan 2024 15:33:24 +0100 Subject: [PATCH] cleaning --- src/example/poisson_dg/poisson_dg.jl | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/example/poisson_dg/poisson_dg.jl b/src/example/poisson_dg/poisson_dg.jl index 10fe910..f2d3911 100644 --- a/src/example/poisson_dg/poisson_dg.jl +++ b/src/example/poisson_dg/poisson_dg.jl @@ -70,9 +70,7 @@ function main() h1(u) = sqrt(sum(Bcube.compute(∫(u ⋅ u + ∇(u) ⋅ ∇(u))dΩ))) e = uₐ - uh - ua2 = FEFunction(U) - projection_l2!(ua2, uₐ, dΩ) - vars = Dict("uh" => uh, "ua" => uₐ, "ua2" => ua2, "error" => e) + vars = Dict("uh" => uh, "u_ref" => uₐ, "error" => e) Bcube.write_vtk_lagrange(joinpath(outputpath, "output"), vars, mesh, U) el2 = l2(e)