From e932a394826d0fa342e6c763fd665aa71cb8876f Mon Sep 17 00:00:00 2001 From: wolf Date: Sat, 18 Dec 1999 14:18:42 +0000 Subject: [PATCH] Adapt tutorial title page to general layout of other pages and other assorted changes. git-svn-id: https://svn.dealii.org/trunk@2080 0785d39b-7218-0410-832d-ea1e28bc413d --- .../doc/tutorial/chapter-3.laplace/title.html | 2 +- deal.II/doc/tutorial/index.html | 123 ++++-------------- deal.II/doc/tutorial/logo.html | 33 +++++ deal.II/doc/tutorial/navbar.html | 63 +++++++++ deal.II/doc/tutorial/title.html | 35 +++++ deal.II/doc/tutorial/toc.html | 114 ++++++++++++++++ 6 files changed, 273 insertions(+), 97 deletions(-) create mode 100644 deal.II/doc/tutorial/logo.html create mode 100644 deal.II/doc/tutorial/navbar.html create mode 100644 deal.II/doc/tutorial/title.html create mode 100644 deal.II/doc/tutorial/toc.html diff --git a/deal.II/doc/tutorial/chapter-3.laplace/title.html b/deal.II/doc/tutorial/chapter-3.laplace/title.html index debfecc6b4..28a5b73fbe 100644 --- a/deal.II/doc/tutorial/chapter-3.laplace/title.html +++ b/deal.II/doc/tutorial/chapter-3.laplace/title.html @@ -18,7 +18,7 @@ -

The deal.II tutorial - Chapter 1 - The Laplace Problem

+

The deal.II tutorial - Chapter 3 - The Laplace Problem

diff --git a/deal.II/doc/tutorial/index.html b/deal.II/doc/tutorial/index.html index e989ceeb22..2dd8e59667 100644 --- a/deal.II/doc/tutorial/index.html +++ b/deal.II/doc/tutorial/index.html @@ -1,107 +1,38 @@ - - - - - The deal.II Tutorial + +deal.II tutorial: Elements of finite element programs + + + - - - Deal Logo -

The deal.II Tutorial

- -

Usage of this document

-

- This tutorial is split into several parts, starting with an outline of - the structure of a finite element program, commencing with the stationary - Laplace problem and advancing to more complicated problems. If you have never - used deal.II we recommend that you begin at the beginning and - advance through the chapters in their proper order. This tutorial contains the - 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 first chapter, - Structure of a Finite - Element Program, can also be used as a reference. -

- -

On deal.II

-

- deal.II is short for Differential Equations Analysis Library, version II, - which says it all, really. Its purpose is the solution of partial differential - equations on unstructured, locally refined grids with error control. You can find more - information on deal.II and some examples at - the - deal.II homepage . - deal.II was written - by the numerics group at the IWR, University of Heidelberg, - mainly by Wolfgang Bangerth and in parts by Guido Kanschat, but - several others have contributed as well. -

+ + -

- The structure of this tutorial is as follows: -

- -

Chapter 1: Basic Elements of a - Finite Element Program

-

(also available in a version without frames) -

-

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

+ -

Chapter 2: 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 3: 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. -

+ -

Technical terms

-

- There is a glossary available to explain technical terms. -

+ +<h1>The deal.II Tutorial</h1> +Your browser does not seem to understand frames. A version of this +page that does not use frames can be found at +<a href="toc.html">toc.html</a>. + -

Comments and Suggestions

-

- Comments and suggestions on this tutorial are welcome and should be - addressed to the deal.II group: -

-
- deal@hermes.iwr.uni-heidelberg.de -
-
-
- -
- The deal.II group
-

- Last modified: $Date$ -

- + + + + diff --git a/deal.II/doc/tutorial/logo.html b/deal.II/doc/tutorial/logo.html new file mode 100644 index 0000000000..ab2c922f26 --- /dev/null +++ b/deal.II/doc/tutorial/logo.html @@ -0,0 +1,33 @@ + + + + + +deal.II tutorial: Logo + + + + + + + + + + + + +DEAL Logo + + + + + + + + + + + diff --git a/deal.II/doc/tutorial/navbar.html b/deal.II/doc/tutorial/navbar.html new file mode 100644 index 0000000000..2d6fe774c0 --- /dev/null +++ b/deal.II/doc/tutorial/navbar.html @@ -0,0 +1,63 @@ + + + +deal.II tutorial: Structure of a Finite Element Program + + + + + + + + +

+Table of contents +

+
    +
  1. +

    + Long table of contents +

    +
  2. +
  3. +

    + + Chapter 1: Elements of finite element programs + +

    +
  4. + +
  5. +

    + + Chapter 2: Step-by-step examples + +

    +
  6. + +
  7. +

    + + Chapter 3: The Laplace problem + +

    +
  8. +
+

+ Back to the tutorial index +

+
+

+ Comments on the tutorial +

+ + + + + + + + + + diff --git a/deal.II/doc/tutorial/title.html b/deal.II/doc/tutorial/title.html new file mode 100644 index 0000000000..895ce95b7b --- /dev/null +++ b/deal.II/doc/tutorial/title.html @@ -0,0 +1,35 @@ + + + + + +deal.II tutorial: Chapter title + + + + + + + + + + + + +

+The deal.II tutorial +

+ + + + + + + + + + + diff --git a/deal.II/doc/tutorial/toc.html b/deal.II/doc/tutorial/toc.html new file mode 100644 index 0000000000..a9f9b95875 --- /dev/null +++ b/deal.II/doc/tutorial/toc.html @@ -0,0 +1,114 @@ + + + + + + + The deal.II Tutorial + + + + + +

The deal.II Tutorial

+ + This is the tutorial for the deal.II + library. It is divided into several chapters, covering different + aspects of a reference manual. The first chapter gives a survey of + the tools that deal.II provides for several + important parts of finite element programs, for example grid + creation, creation of matrices, boundary conditions, etc. The + sections of the chapter contain small code snippets which + demonstrate the use of the techniques under discussion, but no + actual programs. + +

+ + The second chapter contains a series of small programs which are + meant to provide a step-by-step introduction of a new user to + programming with deal.II. The examples start on + a very basic level and are subsequently getting more complex. + +

+ + The third chapter covers a complete finite element solution of + Laplace's equation and the aspects needed for such a project. + +

+ + Note that the second chapter is only partially finished and + that the third contains some material, which however is considered + not very suitable to the purpose it is to serve. We will extend + the second chapter in the near future and probably replace the + third one altogether with a more suitable example. + + + +

The chapters of this tutorial

+ +

+ The structure of this tutorial is as follows: +

+ +

+ Chapter 1: Basic Elements of a + Finite Element Program

+

(also available in a version without frames) +

+ +

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

+ + +

+ Chapter 2: 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 3: 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. +

+ +

Technical terms

+

+ There is a glossary + available to explain technical terms. +

+ +

Comments and Suggestions

+

+ Comments and suggestions on this tutorial are welcome and should be + addressed to the deal.II group: +

+
+ deal@hermes.iwr.uni-heidelberg.de +
+
+
+ +
+ The deal.II group
+ + + + -- 2.39.5