]> https://gitweb.dealii.org/ - dealii-svn.git/commitdiff
Changed navigatio bar and fixed HTML.
authorschrage <schrage@0785d39b-7218-0410-832d-ea1e28bc413d>
Tue, 23 Mar 1999 17:14:24 +0000 (17:14 +0000)
committerschrage <schrage@0785d39b-7218-0410-832d-ea1e28bc413d>
Tue, 23 Mar 1999 17:14:24 +0000 (17:14 +0000)
git-svn-id: https://svn.dealii.org/trunk@1040 0785d39b-7218-0410-832d-ea1e28bc413d

deal.II/doc/tutorial/chapter-3.laplace/assemble.html
deal.II/doc/tutorial/chapter-3.laplace/index.html
deal.II/doc/tutorial/chapter-3.laplace/laplace.html
deal.II/doc/tutorial/chapter-3.laplace/main.html
deal.II/doc/tutorial/chapter-3.laplace/solution.html
deal.II/doc/tutorial/chapter-3.laplace/source.html
deal.II/doc/tutorial/chapter-3.laplace/structure.html
deal.II/doc/tutorial/chapter-3.laplace/triangulation.html

index b5ca1ef1c4c0a23d086d99843f909f6bb637a5b6..869fab1e8dc949bec8e2f3f101ee18a9539d2411 100644 (file)
@@ -248,14 +248,24 @@ the system of equations which can then be solved.
 
 
 <hr>
-<p>
-<a href="../index.html">Back to the tutorial index</a>
-</p>
+
+<table>      
+<tr>
+  <td>
+    <a href="index.html">Back to this chapter's index</a>
+  </td>
+  <td>
+    <a href="../index.html">Back to the tutorial index</a>
+  </td>
+</tr>
+</table>
+
   
 <hr>
 <address><a href="mailto:schrage@gaia.iwr.uni-heidelberg.de">Jan Schrage</a></address>
 <p>
-Last modified: Tue Mar 9, 1999
+Last modified: Tue Mar 23, 1999
 </p>
 </body>
 </html>
+
index 39d39b01b6883559918f5dd9b769473819f73597..2ee3ff45eaf8fbc350fa4216ea72b9c6e8c1d017 100644 (file)
@@ -84,13 +84,13 @@ contains link to all the source files.
 <hr>
 
 <p>
-<a href="../index.html">Back to the tutorial index</a>
+      <a href="../index.html">Back to the tutorial index</a>
 </p>
 <hr>
 <address>
 <a href="mailto:schrage@gaia.iwr.uni-heidelberg.de">Jan Schrage</a></address>
 <p>
-Last modified: Tue 9 Mar 1999 
+Last modified: Tue  Mar 23 1999 
 </p>
 </body>
 </html>
index cce0c9f99941eebf52e674e3086a4cffdf947f10..4d3ad7b75e13d02d51f3b99207a00818bdeeaadb 100644 (file)
@@ -23,15 +23,15 @@ Let's have a look at the class definition:
 class Laplace
 {
 
-  Triangulation<2> tr;
-  DoFHandler<2> dof;
+  Triangulation&lt;2&rt; tr;
+  DoFHandler&lt;2&rt; dof;
 
-  dSMatrixStruct matrix_structure;
+  SparseMatrixStruct matrix_structure;
   LapMatrix A;
 
   ConstraintMatrix hanging_nodes;
 
-<code>
+</code>
 </pre>
 <p>
 These few lines define several important elements: The triangulation <code>tr</code>, i.e. the grid, and a handler for the degrees
@@ -66,17 +66,26 @@ call the appropriate solver.
 </pre>
 
 <hr>
-<p>
-<a href="../index.html">Back to the tutorial index</a>
-</p>
+
+<table>      
+<tr>
+  <td>
+    <a href="index.html">Back to this chapter's index</a>
+  </td>
+  <td>
+    <a href="../index.html">Back to the tutorial index</a>
+  </td>
+</tr>
+</table>
+
   
 <hr>
-<p>
+
 <address><a href="mailto:schrage@gaia.iwr.uni-heidelberg.de">Jan Schrage</a></address>
-</p>
+
 
 <p>
-Last modified: Fri Feb 12, 1999
+Last modified: Tue Mar 23 1999
 </p>
 </body>
 </html>
index a53c8dca34dbf72530b2b92a5bbd9f379e148fda..5f6542af36d603441554850b37311caff9e2d43d 100644 (file)
@@ -114,14 +114,23 @@ Finally the solution is written to a file.</p>
 }
 </code></pre>
 <hr>
-<p>
-<a href="../index.html">Back to the tutorial index</a>
-</p>
+
+<table>      
+<tr>
+  <td>
+    <a href="index.html">Back to this chapter's index</a>
+  </td>
+  <td>
+    <a href="../index.html">Back to the tutorial index</a>
+  </td>
+</tr>
+</table>
+
 <hr>
 <address>
   <a href="mailto:schrage@gaia.iwr.uni-heidelberg.de">Jan Schrage</a></address>
 <p>
-Last modified: Wed 6 Jan 1999
+Last modified: Tue Mar 23 1999
 </p>
 
 </body>
index d728f9fad5f22a61933ddb570ca8b46a655e6c74..b47ae7172fdb24c4a342a614bbe99d6032f68c92 100644 (file)
@@ -24,7 +24,7 @@ Laplace::solve_primal()
 
   SolverControl control(1000, 1.e-10);
 
-  SolverCG<AdvMatrix, dVector> solver(control, mem);
+  SolverCG&lt;AdvMatrix, Vector&lt;double&rt; &rt; solver(control, mem);
   
   solver.solve(A,u,f);
   
@@ -34,15 +34,24 @@ Laplace::solve_primal()
 </code></pre>
 
 <hr>
-<p>
-<a href="../index.html">Back to the tutorial index</a>
-</p>
+
+<table>      
+<tr>
+  <td>
+    <a href="index.html">Back to this chapter's index</a>
+  </td>
+  <td>
+    <a href="../index.html">Back to the tutorial index</a>
+  </td>
+</tr>
+</table>
+
   
 <hr>
 <address><a href="mailto:schrage@gaia.iwr.uni-heidelberg.de">Jan Schrage</a></address>
 
 <p>
-Last modified: Fri Feb 12, 1999
+Last modified: Tue Mar 23 1999
 </p>
 </body>
 </html>
index c55dbbbe8151941bb46399b4fb2ece57cf83da43..83acd5f695bc0310d10bef19886cf7f72fd3f398 100644 (file)
@@ -4,43 +4,53 @@
 <head>
 <title>The Laplace Problem</title>
     <link href="../dealtut.css" rel="StyleSheet" title="DEAL Tutorial">
-i    <meta name="author" content="Jan Schrage <schrage@gaia.iwr.uni-heidelberg.de
->">
+    <meta name="author" content="Jan Schrage <schrage@gaia.iwr.uni-heidelberg.de>">
     <meta name="keywords" content="DEAL,DEAL tutorial">
 </head>
 <body lang="en">
 <h1>The Source Code for the Solution of the Laplace Problem</h1>
 
+<p>
 You can have a look at the complete source code for the solution of the 
 Laplace problem by following the links below:
+</p>
 <ul>
-<li><a href="code/main.cc">main.cc</a> containing the main program which
-         sets some parameters and starts the solution process.
+<li><p><a href="code/main.cc">main.cc</a> containing the main program which
+         sets some parameters and starts the solution process.</p>
 </li>
-<li><a href="code/laplace.h">laplace.h</a> and 
+<li><p><a href="code/laplace.h">laplace.h</a> and 
          <a href="code/laplace.cc">laplace.cc</a> which define the class
-         <code>Laplace</code> that assembles the laplace problem.
+         <code>Laplace</code> that assembles the laplace problem.</p>
 </li>
-<li><a href="code/functions.h">functions.h</a> and 
+<li><p><a href="code/functions.h">functions.h</a> and 
          <a href="func.cc">func.cc</a> which define the function that sets
-         the boundary conditions.
+         the boundary conditions.</p>
 </li>
-<li><a href="code/Makefile">Makefile</a>. Last but not least. You will 
+<li><p><a href="code/Makefile">Makefile</a>. Last but not least. You will 
          probably need to edit the variable <code>root</code> defined at the
          top of the Makefile. This defines the location of your 
-         <acronym>DEAL</acronym> directory.
+         <acronym>DEAL</acronym> directory.</p>
 </li>
 </ul>
 
 <hr>
-<p>
-<a href="../index.html">Back to the tutorial index</a>
-</p>
+
+<table>      
+<tr>
+  <td>
+    <a href="index.html">Back to this chapter's index</a>
+  </td>
+  <td>
+    <a href="../index.html">Back to the tutorial index</a>
+  </td>
+</tr>
+</table>
+
 <hr>
 <address>
 <a href="mailto:schrage@gaia.iwr.uni-heidelberg.de">Jan Schrage</a></address>
 <p>
-Last modified: Mon 8 Mar 1999 
+Last modified: Tue Mar 23 1999 
 </p>
 </body>
 </html>
index b0bf4bcd4d47cafdbfc8712c7c4e47d8bc1a1156..ca7c89d48e7dfd1639f88ceddf7a4135ba1a3b2a 100644 (file)
   
 
 <hr>
-<p>
-<a href="../index.html">Back to the tutorial index</a>
-</p>
+
+<table>      
+<tr>
+  <td>
+    <a href="index.html">Back to this chapter's index</a>
+  </td>
+  <td>
+    <a href="../index.html">Back to the tutorial index</a>
+  </td>
+</tr>
+</table>
+
   
 <hr>
 <address><a href="mailto:schrage@gaia.iwr.uni-heidelberg.de">Jan Schrage</a></address>
 
 <p>
-Last modified: Mon Feb 15, 1999
+Last modified: Tue Mar 23 1999
 </p>
 </body>
 </html>
index 7287c4b7f5690966eaf034debc11dcc55cbfb936..f5fb260ea9984d13e427e4f9e7a4af53452e81fd 100644 (file)
@@ -18,7 +18,7 @@ triangulation consists of only one finite element.
 </p>
 <pre>
 <code>
-Laplace::Laplace(Function<2>& solution)                
+Laplace::Laplace(Function&lt;2&rt;&amp; solution)              
 {
   tr.create_hypercube(-1.,1.);
 </code>
@@ -37,16 +37,25 @@ This step is necessary whenever the triangulation has changed, e.g. after each r
 </pre>
 
 <hr>
-<p>
-<a href="../index.html">Back to the tutorial index</a>
-</p>
+
+<table>      
+<tr>
+  <td>
+    <a href="index.html">Back to this chapter's index</a>
+  </td>
+  <td>
+    <a href="../index.html">Back to the tutorial index</a>
+  </td>
+</tr>
+</table>
+
   
 <hr>
 
 <address><a href="mailto:schrage@gaia.iwr.uni-heidelberg.de">Jan Schrage</a></address>
 
 <p>
-Last modified: Fri Feb 12, 1999
+Last modified: Tue Mar 23 1999
 </p>
 </body>
 </html>

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.