From 5ba197823d49a3ab00a32cd42d2881defb21b047 Mon Sep 17 00:00:00 2001 From: wolf Date: Mon, 6 Dec 1999 10:23:48 +0000 Subject: [PATCH] Add step-by-step examples. git-svn-id: https://svn.dealii.org/trunk@1983 0785d39b-7218-0410-832d-ea1e28bc413d --- .../chapter-2.step-by-step/index.html | 42 +++++++++++++ .../tutorial/chapter-2.step-by-step/logo.html | 33 +++++++++++ .../chapter-2.step-by-step/navbar.html | 44 ++++++++++++++ .../chapter-2.step-by-step/title.html | 34 +++++++++++ .../tutorial/chapter-2.step-by-step/toc.html | 59 +++++++++++++++++++ deal.II/doc/tutorial/index.html | 25 ++++++-- 6 files changed, 233 insertions(+), 4 deletions(-) create mode 100644 deal.II/doc/tutorial/chapter-2.step-by-step/index.html create mode 100644 deal.II/doc/tutorial/chapter-2.step-by-step/logo.html create mode 100644 deal.II/doc/tutorial/chapter-2.step-by-step/navbar.html create mode 100644 deal.II/doc/tutorial/chapter-2.step-by-step/title.html create mode 100644 deal.II/doc/tutorial/chapter-2.step-by-step/toc.html diff --git a/deal.II/doc/tutorial/chapter-2.step-by-step/index.html b/deal.II/doc/tutorial/chapter-2.step-by-step/index.html new file mode 100644 index 0000000000..a03c7e047e --- /dev/null +++ b/deal.II/doc/tutorial/chapter-2.step-by-step/index.html @@ -0,0 +1,42 @@ + + + + + +Step-by-Step Examples + + + + + + + + + + + + + + + + + + + + + +<h1>The deal.II Tutorial</h1> +Your browser does not seem to understand frames. A version of this +tutorial that does not use frames can be found +<a href="toc.html">here</a>. + + + + + + + + diff --git a/deal.II/doc/tutorial/chapter-2.step-by-step/logo.html b/deal.II/doc/tutorial/chapter-2.step-by-step/logo.html new file mode 100644 index 0000000000..5e722b04ee --- /dev/null +++ b/deal.II/doc/tutorial/chapter-2.step-by-step/logo.html @@ -0,0 +1,33 @@ + + + + + +Step-by-Step Examples + + + + + + + + + + + + +DEAL Logo + + + + + + + + + + + diff --git a/deal.II/doc/tutorial/chapter-2.step-by-step/navbar.html b/deal.II/doc/tutorial/chapter-2.step-by-step/navbar.html new file mode 100644 index 0000000000..8036962aa9 --- /dev/null +++ b/deal.II/doc/tutorial/chapter-2.step-by-step/navbar.html @@ -0,0 +1,44 @@ + + + + + +Step-by-Step Examples + + + + + + + + +

+Table of contents +

+
    +
  1. +

    + Step 1 +

    +
  2. +
+

+ Back to the tutorial index +

+
+

+ Comments on the tutorial +

+ + + + + + + + + + diff --git a/deal.II/doc/tutorial/chapter-2.step-by-step/title.html b/deal.II/doc/tutorial/chapter-2.step-by-step/title.html new file mode 100644 index 0000000000..e82472acce --- /dev/null +++ b/deal.II/doc/tutorial/chapter-2.step-by-step/title.html @@ -0,0 +1,34 @@ + + + + + +Step-by-Step Examples + + + + + + + + + + + + +

The deal.II tutorial - Step-by-step examples

+ + + + + + + + + + + + diff --git a/deal.II/doc/tutorial/chapter-2.step-by-step/toc.html b/deal.II/doc/tutorial/chapter-2.step-by-step/toc.html new file mode 100644 index 0000000000..83b6898e3a --- /dev/null +++ b/deal.II/doc/tutorial/chapter-2.step-by-step/toc.html @@ -0,0 +1,59 @@ + + + + + +Step-by-Step + + + + + + + + + + +

Step-by-Step example

+ +

+In this chapter, we present a collecting of small programs, each more +or less built atop of the previous one, which demonstrate various +aspects of the library. At present, the following programs exist: +

+ +
+
Step 1
+
What's new: everything. We create a grid and show a simple + way to write it to a file. +
+ +
Step 2
+
What's new: Associate degrees of freedom to each vertex + and compute the resulting sparsity pattern of matrices. Show + that renumbering reduces the bandwidth of matrices + significantly, i.e. clusters nonzero entries around the + diagonal. +
+
+ + +
+ + + + + +
+
+Jan Schrage
+

+Last modified: $Date$ +

+ + diff --git a/deal.II/doc/tutorial/index.html b/deal.II/doc/tutorial/index.html index 0dc341a5b4..2bc308ef14 100644 --- a/deal.II/doc/tutorial/index.html +++ b/deal.II/doc/tutorial/index.html @@ -24,7 +24,8 @@ complete code for every example program and can be used as a reference, too, if you are looking for code to solve a specific problem with deal.II. The 0th chapter, - Structure of a Finite Element Program, can also be used as a reference. + Structure of a Finite + Element Program, can also be used as a reference.

On deal.II

@@ -51,16 +52,32 @@

We will discuss the various elements needed for a working finite element program and some of the possibilities - deal.II offers in this respect. + deal.II offers in this respect. This chapter + does not include working programs, but rather snippets of + programs.

-

Chapter 1: The very simple Laplace +

Chapter 1: Various small + programs demonstrating aspects of the library

+

+ (also available in a version + without frames) +

+

+ This chapter contains several functional programs which + demonstrate successively more complex parts of a finite element + program. +

+ +

Chapter 2: The very simple Laplace Problem

(also available in a version without frames)

- *********** + NOTE: this example program is not finished and not a good + example after all. +

We will solve the stationary Laplace problem on a square grid with boundary conditions of the form cos(2*PI*x)cos(2*PI*y). You can also obtain the source code. -- 2.39.5