From 34f834b55499c4bb384b7250e0417336a7c65ecf Mon Sep 17 00:00:00 2001 From: wolf Date: Thu, 30 Dec 1999 23:40:16 +0000 Subject: [PATCH] Doc addition. git-svn-id: https://svn.dealii.org/trunk@2140 0785d39b-7218-0410-832d-ea1e28bc413d --- .../examples/step-by-step/step-5/step-5.cc | 6 ++++ .../chapter-2.step-by-step/step-5.intro | 34 +++++++++++++++++++ deal.II/examples/step-5/step-5.cc | 6 ++++ 3 files changed, 46 insertions(+) diff --git a/deal.II/deal.II/Attic/examples/step-by-step/step-5/step-5.cc b/deal.II/deal.II/Attic/examples/step-by-step/step-5/step-5.cc index e595b44842..8e0beba015 100644 --- a/deal.II/deal.II/Attic/examples/step-by-step/step-5/step-5.cc +++ b/deal.II/deal.II/Attic/examples/step-by-step/step-5/step-5.cc @@ -837,6 +837,12 @@ void LaplaceProblem::run () // what not to do, after // all. + // We can now actually read + // the grid. It is in UCD + // (unstructured cell data) + // format, as supported by + // AVS Explorer, for + // example: ifstream input_file("circle-grid.inp"); grid_in.read_ucd (input_file); diff --git a/deal.II/doc/tutorial/chapter-2.step-by-step/step-5.intro b/deal.II/doc/tutorial/chapter-2.step-by-step/step-5.intro index 1518606e43..362d757e28 100644 --- a/deal.II/doc/tutorial/chapter-2.step-by-step/step-5.intro +++ b/deal.II/doc/tutorial/chapter-2.step-by-step/step-5.intro @@ -1,3 +1,37 @@

Introduction

+This example does not show revolutionary new things, but it shows many +small improvements over the previous examples, and also many small +things that can usually be found in finite element programs. Among +them are: + diff --git a/deal.II/examples/step-5/step-5.cc b/deal.II/examples/step-5/step-5.cc index e595b44842..8e0beba015 100644 --- a/deal.II/examples/step-5/step-5.cc +++ b/deal.II/examples/step-5/step-5.cc @@ -837,6 +837,12 @@ void LaplaceProblem::run () // what not to do, after // all. + // We can now actually read + // the grid. It is in UCD + // (unstructured cell data) + // format, as supported by + // AVS Explorer, for + // example: ifstream input_file("circle-grid.inp"); grid_in.read_ucd (input_file); -- 2.39.5