From 0a3cf643681c91ed066c18db7f3863e6ea0d2e48 Mon Sep 17 00:00:00 2001 From: schrage Date: Mon, 7 Jun 1999 14:15:12 +0000 Subject: [PATCH] Update for newer deal.II version, class GridGenerator,FEQ1 git-svn-id: https://svn.dealii.org/trunk@1377 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/doc/tutorial/chapter-1.elements/dofs.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/deal.II/doc/tutorial/chapter-1.elements/dofs.html b/deal.II/doc/tutorial/chapter-1.elements/dofs.html index f11c483f50..40c5393954 100644 --- a/deal.II/doc/tutorial/chapter-1.elements/dofs.html +++ b/deal.II/doc/tutorial/chapter-1.elements/dofs.html @@ -70,13 +70,14 @@ The finite elements used are bilinear. #include <grid/tria.h> #include <grid/dof.h> +#include <grid/grid_generator.h> #include <fe/fe_lib.lagrange.h> Triangulation<dim> tr; DoFHandler<dim> dof; -FELinear<dim> fe; +FEQ1<dim> fe; -tr.create_hypercube(-1,1); +GridGenerator<dim>::hyper_cube(tr,-1,1); dof.distribute_dofs(fe); -- 2.39.5