From: schrage Date: Tue, 23 Mar 1999 17:14:24 +0000 (+0000) Subject: Changed navigatio bar and fixed HTML. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2beeb1550842e941d18d630fd91403dc1389aec1;p=dealii-svn.git Changed navigatio bar and fixed HTML. git-svn-id: https://svn.dealii.org/trunk@1040 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/doc/tutorial/chapter-3.laplace/assemble.html b/deal.II/doc/tutorial/chapter-3.laplace/assemble.html index b5ca1ef1c4..869fab1e8d 100644 --- a/deal.II/doc/tutorial/chapter-3.laplace/assemble.html +++ b/deal.II/doc/tutorial/chapter-3.laplace/assemble.html @@ -248,14 +248,24 @@ the system of equations which can then be solved.
-

-Back to the tutorial index -

+ + + + + + +
+ Back to this chapter's index + + Back to the tutorial index +
+
Jan Schrage

-Last modified: Tue Mar 9, 1999 +Last modified: Tue Mar 23, 1999

+ diff --git a/deal.II/doc/tutorial/chapter-3.laplace/index.html b/deal.II/doc/tutorial/chapter-3.laplace/index.html index 39d39b01b6..2ee3ff45ea 100644 --- a/deal.II/doc/tutorial/chapter-3.laplace/index.html +++ b/deal.II/doc/tutorial/chapter-3.laplace/index.html @@ -84,13 +84,13 @@ contains link to all the source files.

-Back to the tutorial index + Back to the tutorial index


Jan Schrage

-Last modified: Tue 9 Mar 1999 +Last modified: Tue Mar 23 1999

diff --git a/deal.II/doc/tutorial/chapter-3.laplace/laplace.html b/deal.II/doc/tutorial/chapter-3.laplace/laplace.html index cce0c9f999..4d3ad7b75e 100644 --- a/deal.II/doc/tutorial/chapter-3.laplace/laplace.html +++ b/deal.II/doc/tutorial/chapter-3.laplace/laplace.html @@ -23,15 +23,15 @@ Let's have a look at the class definition: class Laplace { - Triangulation<2> tr; - DoFHandler<2> dof; + Triangulation<2&rt; tr; + DoFHandler<2&rt; dof; - dSMatrixStruct matrix_structure; + SparseMatrixStruct matrix_structure; LapMatrix A; ConstraintMatrix hanging_nodes; - +

These few lines define several important elements: The triangulation tr, i.e. the grid, and a handler for the degrees @@ -66,17 +66,26 @@ call the appropriate solver.


-

-Back to the tutorial index -

+ + + + + + +
+ Back to this chapter's index + + Back to the tutorial index +
+
-

+

Jan Schrage
-

+

-Last modified: Fri Feb 12, 1999 +Last modified: Tue Mar 23 1999

diff --git a/deal.II/doc/tutorial/chapter-3.laplace/main.html b/deal.II/doc/tutorial/chapter-3.laplace/main.html index a53c8dca34..5f6542af36 100644 --- a/deal.II/doc/tutorial/chapter-3.laplace/main.html +++ b/deal.II/doc/tutorial/chapter-3.laplace/main.html @@ -114,14 +114,23 @@ Finally the solution is written to a file.

}
-

-Back to the tutorial index -

+ + + + + + +
+ Back to this chapter's index + + Back to the tutorial index +
+
Jan Schrage

-Last modified: Wed 6 Jan 1999 +Last modified: Tue Mar 23 1999

diff --git a/deal.II/doc/tutorial/chapter-3.laplace/solution.html b/deal.II/doc/tutorial/chapter-3.laplace/solution.html index d728f9fad5..b47ae7172f 100644 --- a/deal.II/doc/tutorial/chapter-3.laplace/solution.html +++ b/deal.II/doc/tutorial/chapter-3.laplace/solution.html @@ -24,7 +24,7 @@ Laplace::solve_primal() SolverControl control(1000, 1.e-10); - SolverCG solver(control, mem); + SolverCG<AdvMatrix, Vector<double&rt; &rt; solver(control, mem); solver.solve(A,u,f); @@ -34,15 +34,24 @@ Laplace::solve_primal()
-

-Back to the tutorial index -

+ + + + + + +
+ Back to this chapter's index + + Back to the tutorial index +
+
Jan Schrage

-Last modified: Fri Feb 12, 1999 +Last modified: Tue Mar 23 1999

diff --git a/deal.II/doc/tutorial/chapter-3.laplace/source.html b/deal.II/doc/tutorial/chapter-3.laplace/source.html index c55dbbbe81..83acd5f695 100644 --- a/deal.II/doc/tutorial/chapter-3.laplace/source.html +++ b/deal.II/doc/tutorial/chapter-3.laplace/source.html @@ -4,43 +4,53 @@ The Laplace Problem -i +

The Source Code for the Solution of the Laplace Problem

+

You can have a look at the complete source code for the solution of the Laplace problem by following the links below: +


-

-Back to the tutorial index -

+ + + + + + +
+ Back to this chapter's index + + Back to the tutorial index +
+
Jan Schrage

-Last modified: Mon 8 Mar 1999 +Last modified: Tue Mar 23 1999

diff --git a/deal.II/doc/tutorial/chapter-3.laplace/structure.html b/deal.II/doc/tutorial/chapter-3.laplace/structure.html index b0bf4bcd4d..ca7c89d48e 100644 --- a/deal.II/doc/tutorial/chapter-3.laplace/structure.html +++ b/deal.II/doc/tutorial/chapter-3.laplace/structure.html @@ -44,15 +44,24 @@
-

-Back to the tutorial index -

+ + + + + + +
+ Back to this chapter's index + + Back to the tutorial index +
+
Jan Schrage

-Last modified: Mon Feb 15, 1999 +Last modified: Tue Mar 23 1999

diff --git a/deal.II/doc/tutorial/chapter-3.laplace/triangulation.html b/deal.II/doc/tutorial/chapter-3.laplace/triangulation.html index 7287c4b7f5..f5fb260ea9 100644 --- a/deal.II/doc/tutorial/chapter-3.laplace/triangulation.html +++ b/deal.II/doc/tutorial/chapter-3.laplace/triangulation.html @@ -18,7 +18,7 @@ triangulation consists of only one finite element.

 
-Laplace::Laplace(Function<2>& solution)		
+Laplace::Laplace(Function<2&rt;& solution)		
 {
   tr.create_hypercube(-1.,1.);
 
@@ -37,16 +37,25 @@ This step is necessary whenever the triangulation has changed, e.g. after each r
 

-

-Back to the tutorial index -

+ + + + + + +
+ Back to this chapter's index + + Back to the tutorial index +
+
Jan Schrage

-Last modified: Fri Feb 12, 1999 +Last modified: Tue Mar 23 1999