]> https://gitweb.dealii.org/ - dealii-svn.git/commitdiff
Guido's suggestions + added next chapter to navbar
authorschrage <schrage@0785d39b-7218-0410-832d-ea1e28bc413d>
Mon, 12 Apr 1999 14:44:50 +0000 (14:44 +0000)
committerschrage <schrage@0785d39b-7218-0410-832d-ea1e28bc413d>
Mon, 12 Apr 1999 14:44:50 +0000 (14:44 +0000)
git-svn-id: https://svn.dealii.org/trunk@1124 0785d39b-7218-0410-832d-ea1e28bc413d

deal.II/doc/tutorial/chapter-1.elements/dofs.html
deal.II/doc/tutorial/chapter-1.elements/matrix_generation.html
deal.II/doc/tutorial/chapter-1.elements/matrix_structure.html
deal.II/doc/tutorial/chapter-1.elements/toc.html

index 74daf63d6afa3a7fc5c6b727311ab3c71291149a..97872f0c7cd3823bd76a29c45b2db90317442012 100644 (file)
@@ -74,7 +74,7 @@ The finite elements used are bilinear.
 
 Triangulation&lt;dim&gt; tr;
 DoFHandler&lt;dim&gt; dof;
-FELinear&lt;dim&gt;
+FELinear&lt;dim&gt; fe;
 
 tr.create_hypercube(-1,1);
 dof.distribute_dofs(fe);
@@ -107,11 +107,16 @@ dof.renumber_dofs(Cuthill_McKey);
 </code>
 </pre>
 
+<h2>Access to triangulation cells, faces and vertices</h2>
+
 
 <!-- Page Foot -->
 <hr>
 <table class="navbar">      
 <tr>
+  <td>
+    <a href="hanging_nodes.html">Next Chapter: Hanging Nodes</a>
+  </td>
   <td>
     <a href="toc.html">Back to this chapter's index</a>
   </td>
index 66546074ed8e6445e857abe41f6a4c93b38958a7..63734c3b8f509104be9a83829996e699cfd2eba8 100644 (file)
@@ -47,6 +47,9 @@ sm.reinit(smstruct);
 <hr>
 <table class="navbar">      
 <tr>
+  <td>
+    <a href="rhs.html">Next Chapter: Problem Matrix and RHS</a>
+  </td>
   <td>
     <a href="toc.html">Back to this chapter's index</a>
   </td>
index 490f2725d78b185804aaa7552487ab011998fd3d..547f713f24969968043939758bc4cd9613c66a09 100644 (file)
@@ -20,7 +20,7 @@
 <h2>Why thinking about matrix structures is important</h2>
 <p>
 Many of the matrices encountered when trying to solve systems of differential
-equations consist mostly of zeroes. At the same time those matrices are 
+equations consist mostly of zero entries. At the same time those matrices are 
 very large, and therefore storage is expensive in terms of memory. 
 <acronym>deal.II</acronym> attempts to resolve this problem by 
 providing means of generating memory efficient structures for sparse
@@ -41,12 +41,13 @@ tell the matrix for which elements to allocate memory.
 <p>
 The <acronym>deal.II</acronym> function initializing a standard sparse matrix
 structure is <code>void SparseMatrixStruct::reinit(const unsigned int m, const unsigned int n, const unsigned int max_per_row)</code>. It takes as its arguments
-the size of the matrix in question and the maximum number of non-zero elements.
+the size of the matrix in question and the maximum number of non-zero elements
+in one row.
 This number can be calculated with 
 <code>int DoFHandler::max_couplings_between_dofs()</code>.
 This matrix structure can then be used to generate a matrix using 
 <code>void SparseMatrix::reinit(const SparseMatrixStruct &sparsity)</code>.
-In most cases you will also need to take care of the constraints to your
+In cases of locally refined grids you will also need to take care of the constraints to your
 matrix given by the <a href="hanging_nodes.html">hanging nodes</a>.
 </p>
 
@@ -112,6 +113,9 @@ smstruct.compress();
 <hr>
 <table class="navbar">      
 <tr>
+  <td>
+    <a href="matrix_generation.html">Next Chapter: MAtrix and Vector Generation</a>
+  </td>
   <td>
     <a href="toc.html">Back to this chapter's index</a>
   </td>
@@ -128,3 +132,4 @@ Last modified: $Date$
 </p>
 </body>
 </html>
+
index a59fe82f903de9d124ae8713c2d2ffb2d8ed32c8..2740db870cb565ea4138d15e0cc93279aac73fe1 100644 (file)
@@ -46,7 +46,7 @@ your needs.
        <p>
          <b><a href="hanging_nodes.html">Hanging Nodes</a></b>
        </p>
-       <p>where hanging nodes are discussed.</p>
+       <p>where locally refined grids are discussed.</p>
       </li>
       
       <li>

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.