]> https://gitweb.dealii.org/ - dealii-svn.git/commitdiff
Misc changes to link targets, html, style etc.
authorschrage <schrage@0785d39b-7218-0410-832d-ea1e28bc413d>
Thu, 8 Apr 1999 10:57:35 +0000 (10:57 +0000)
committerschrage <schrage@0785d39b-7218-0410-832d-ea1e28bc413d>
Thu, 8 Apr 1999 10:57:35 +0000 (10:57 +0000)
git-svn-id: https://svn.dealii.org/trunk@1092 0785d39b-7218-0410-832d-ea1e28bc413d

19 files changed:
deal.II/doc/tutorial/chapter-1.elements/dofs.html
deal.II/doc/tutorial/chapter-1.elements/grid_creation.html
deal.II/doc/tutorial/chapter-1.elements/navbar.html
deal.II/doc/tutorial/chapter-1.elements/title.html
deal.II/doc/tutorial/chapter-1.elements/toc.html
deal.II/doc/tutorial/chapter-3.laplace/assemble.html
deal.II/doc/tutorial/chapter-3.laplace/code/laplace.cc
deal.II/doc/tutorial/chapter-3.laplace/code/laplace.h
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/navbar.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/title.html
deal.II/doc/tutorial/chapter-3.laplace/toc.html
deal.II/doc/tutorial/chapter-3.laplace/triangulation.html
deal.II/doc/tutorial/dealtut.css
deal.II/doc/tutorial/template.html

index 5a6d22c1fc08452e7336839e11393e810354af19..289d1e30fab97452ff320c4a8c4980835fdb959e 100644 (file)
@@ -108,7 +108,7 @@ dof.renumber_dofs(Cuthill_McKey);
 <table class="navbar">      
 <tr>
   <td>
-    <a href="index.html">Back to this chapter's index</a>
+    <a href="toc.html">Back to this chapter's index</a>
   </td>
   <td>
     <a href="../index.html">Back to the tutorial index</a>
@@ -119,7 +119,7 @@ dof.renumber_dofs(Cuthill_McKey);
 <address>
 <a href="mailto:schrage@gaia.iwr.uni-heidelberg.de">Jan Schrage</a></address>
 <p>
-Last modified: Wed Mar 24 1999
+Last modified: $Date$
 </p>
 </body>
 </html>
index adaefac8ddb0614c2c26d5dfe1f06b704c406a2f..9d9bfecf1d90933d2db7c9abb26388b9a975edad 100644 (file)
@@ -37,13 +37,52 @@ default to 0 and 1, creating the unit hypercube. The hypercube will consist of
 exactly one cell.
 </p>
 
+<p class="Example">
+<span class="example">Example:</span> Below we show the includes,
+definitions and
+function calls needed. Be sure to use them in their appropriate places.
+This example will create the hypercube [-1,1]<sup>dim</sup>.
+</p>
+<pre class="example">
+<code>
+#include &lt;grid/tria.h&gt;
+
+int dim=2;  // For example
+Triangulation&lt;dim&gt; tr;
+
+tr.create_hypercube(-1,1);
+</code>
+</pre>
+
+
 <h3><a name="ball">Hyperball</a></h3>
 <p>
 A hyperball can be created using the function<br>
-<code>void Triangulation::create_hyper_ball(const Point&lt;dim&rt; center=0.,const double radius=1.)</code><br>
+<code>void Triangulation::create_hyper_ball(const Point&lt;dim&gt; center=0.,const double radius=1.)</code><br>
 This will create a hyperball of given centre and radius where the location of the centre defaults to the origin and the radius to unity.
 </p>
 
+<p class="Example">
+<span class="example">Example:</span> Below we show the includes,
+definitions and
+function calls needed. Be sure to use them in their appropriate places.
+This example will create a hyperball with unit radius centred on (1,0).
+</p>
+<pre class="example">
+<code>
+#include &lt;grid/tria.h&gt;
+#include &lt;base/point.h&gt;
+
+int dim=2;  // For example
+Triangulation&lt;dim&gt; tr;
+Point&lt;dim&gt; centre(1,0); // Taking (1,0) as the centre of the ball
+
+tr.create_hyperball(centre,1);
+
+</code>
+</pre>
+
+
 <h3><a name="L">Hyper-L</a></h3>
 <p>
 A hyper-L can be created using the function<br>
@@ -60,6 +99,24 @@ hypercube and <code>&part;<sub>n</sub>u=0</code> on the "inner" faces resulting
 from the smaller hypercube taken away.
 </p>
 
+<p class="example">
+<span class="example">Example:</span> Below we show the includes,
+definitions and
+function calls needed. Be sure to use them in their appropriate places.
+This example will create the default hyper-L.
+</p>
+<pre class="example">
+<code>
+#include &lt;grid/tria.h&gt;
+
+int dim=2;  // For example
+Triangulation&lt;dim&gt; tr;
+
+tr.create_hyper_L(-1,1);
+</code>
+</pre>
+
+
 <h3><a name="file">Reading a grid from a file</a></h3>
 
 <p>In many problems taken from real life you will find those grid types
@@ -68,7 +125,7 @@ this is possible. <acronym>deal.II</acronym> offers the possibility of
 reading a complete triangulation from a file in the <tt>ucd</tt>-format 
 used by avs. A <tt>ucd</tt>-file can be read with the function<br> 
 <code>void DataIn::read_ucd(istream&)</code><br>
-At present only lines in on dimension and lines and quads in two dimensions
+At present only lines in one dimension and lines and quads in two dimensions
 are accepted. All other data is rejected. 
 </p>
 
@@ -88,7 +145,7 @@ encountered in two dimensions can be found in the
 <table class="navbar" >      
 <tr>
   <td>
-    <a href="index.html">Back to this chapter's index</a>
+    <a href="toc.html">Back to this chapter's index</a>
   </td>
   <td>
     <a href="../index.html">Back to the tutorial index</a>
@@ -99,7 +156,7 @@ encountered in two dimensions can be found in the
 <address>
 <a href="mailto:schrage@gaia.iwr.uni-heidelberg.de">Jan Schrage</a></address>
 <p>
-Last modified: Wed Mar 24 1999 
+Last modified: $Date$
 </p>
 </body>
 </html>
index 1802a58622c889157190e74dc5af9f5b70ee1ce1..8007e99b1fe0a0870c485b0d31ef1e588908f5f6 100644 (file)
 <p>
 <strong>Table of contents</strong>
 </p>
-    <ol>      
+    <ol>
+      <li>
+       <p>
+         <a href="toc.html" target="body">Long table of contents</a>
+       </p>
+      </li>
       <li>
        <p>
          <a href="grid_creation.html" target="body">Creation of a grid</a>
        </p>
       </li>
     </ol>
+    <p>
+      <a href="../index.html" target="_top">Back to the tutorial index</a>
+    </p>
+<!-- Last modified: $Date$ -->
 
 </body>
 </html>
index 4a927a0b05dff375a11238021a26d8b6de23f7fd..d678008b5c129475b5ac12a0ac92d12d4c9bdbe9 100644 (file)
 
 <!-- Title Frame -->
 
-<img src="../../pictures/deal10.gif" alt="DEAL Logo" align="left" hspace=20>
-<h1>The deal.II tutorial - Chapter 0 - Structure of a Finite Element Program</h1>
+<img src="../../pictures/deal10.gif" alt="DEAL Logo" align="left" hspace=20 class="chapter_title">
+<h1 class="chapter_title">The deal.II tutorial - Chapter 0 - Structure of a Finite Element Program</h1>
 
 </body>
 </html>
 
 
+
+
+
+
+
+
index cf1f97826d8c61e7ef4d21419e179bffe0a16fdc..ded54f43c666d471b0ccf8a4e6d46ac1adfb0894 100644 (file)
@@ -122,7 +122,7 @@ your needs.
 <table class="navbar">      
 <tr>
   <td>
-    <a href="index.html">Back to this chapter's index</a>
+    <a href="toc.html">Back to this chapter's index</a>
   </td>
   <td>
     <a href="../index.html">Back to the tutorial index</a>
index ca198258594242afdb9fd065961aef0748c40177..7bcd10f84ebf99944bae372b7fcc41f10482b3a2 100644 (file)
@@ -252,7 +252,7 @@ the system of equations which can then be solved.
 <table class="navbar">      
 <tr>
   <td>
-    <a href="index.html">Back to this chapter's index</a>
+    <a href="toc.html">Back to this chapter's index</a>
   </td>
   <td>
     <a href="../index.html">Back to the tutorial index</a>
@@ -264,7 +264,7 @@ the system of equations which can then be solved.
 <hr>
 <address><a href="mailto:schrage@gaia.iwr.uni-heidelberg.de">Jan Schrage</a></address>
 <p>
-Last modified: Tue Mar 23, 1999
+Last modified: $Date$
 </p>
 </body>
 </html>
index da588e58acfcad9b8044cd3fb8625d36e68dba57..49044c1acc0fcdc38dd25a4cfe41502ac6f8b33c 100644 (file)
@@ -146,8 +146,8 @@ Laplace::assemble()
   // Insert the boundary conditions into the matrix.
   map<int,double> boundary_values;
   DoFHandler<2>::FunctionMap dirichlet_bc;
-  BoundaryFct bfkt;
-  dirichlet_bc[0]=&bfkt;
+  BoundaryFct bfct;
+  dirichlet_bc[0]=&bfct;
   VectorTools<2>::interpolate_boundary_values(dof,dirichlet_bc,
                                              fe,boundary,
                                              boundary_values);
index 552ea2a1017ccce8cf09b5069ffa30fd2e991ca5..a74f20ac8d783b5c5e3b42f7107883f6069d5a3a 100644 (file)
@@ -24,7 +24,7 @@ public:
 class Laplace
 {
 protected:
-  Point<2> direction;
+//  Point<2> direction;
   Triangulation<2> tr;
   DoFHandler<2> dof;
 
index f554104d8c24a784d708884e6a09e1650da06faa..1c5c1ff0f893e2eb3187f541be60663245f9e70d 100644 (file)
@@ -70,7 +70,7 @@ call the appropriate solver.
 <table class="navbar">      
 <tr>
   <td>
-    <a href="index.html">Back to this chapter's index</a>
+    <a href="toc.html">Back to this chapter's index</a>
   </td>
   <td>
     <a href="../index.html">Back to the tutorial index</a>
@@ -85,7 +85,7 @@ call the appropriate solver.
 
 
 <p>
-Last modified: Tue Mar 23 1999
+Last modified: $Date$
 </p>
 </body>
 </html>
index 5df185843102cc41ef03bb2b084f19db6a2a877d..777a3ae016e9ff52ac93f09611f7c3a26de25f3f 100644 (file)
@@ -118,7 +118,7 @@ Finally the solution is written to a file.</p>
 <table class="navbar">      
 <tr>
   <td>
-    <a href="index.html">Back to this chapter's index</a>
+    <a href="toc.html">Back to this chapter's index</a>
   </td>
   <td>
     <a href="../index.html">Back to the tutorial index</a>
@@ -130,7 +130,7 @@ Finally the solution is written to a file.</p>
 <address>
   <a href="mailto:schrage@gaia.iwr.uni-heidelberg.de">Jan Schrage</a></address>
 <p>
-Last modified: Tue Mar 23 1999
+Last modified: $Date$
 </p>
 
 </body>
index 6ae445d67c242b20254b72f6168a597e541ef214..b3ea799a8bc2a37852f9fb40aead033c28fa3e9d 100644 (file)
 <ol>
 <li>
 <p>
+<a href="toc.html" target="body">Long table of contents</a>
+</p>
+</li>
+<li>
+<p>
 <a href="structure.html" target="body">Program structure</a>
 </p>
 </li>
 </p>
 </li>
 </ol>
+    <p>
+      <a href="../index.html" target="_top">Back to the tutorial index</a>
+    </p>
+
+<!-- Last modified: $Date$ -->
 
 </body>
 </html>
index 326f880ffccdec87bbbac9e0f088517a485dec25..57ea13d13efb9dd4f599d19361b3396478c9157d 100644 (file)
@@ -19,7 +19,7 @@ iterations and a threshold of 1e-10.
 
 <pre><code>
 void
-Laplace::solve_primal()
+Laplace::solve()
 {
 
   SolverControl control(1000, 1.e-10);
@@ -38,7 +38,7 @@ Laplace::solve_primal()
 <table class="navbar">      
 <tr>
   <td>
-    <a href="index.html">Back to this chapter's index</a>
+    <a href="toc.html">Back to this chapter's index</a>
   </td>
   <td>
     <a href="../index.html">Back to the tutorial index</a>
@@ -51,7 +51,7 @@ Laplace::solve_primal()
 <address><a href="mailto:schrage@gaia.iwr.uni-heidelberg.de">Jan Schrage</a></address>
 
 <p>
-Last modified: Tue Mar 23 1999
+Last modified: $Date$
 </p>
 </body>
 </html>
index 54e486f85105b5f87664aa86927a3aad8efe0c09..36ae2da792f80c9f94716b4358c865d2b2f1b6a2 100644 (file)
@@ -38,7 +38,7 @@ Laplace problem by following the links below:
 <table class="navbar">      
 <tr>
   <td>
-    <a href="index.html">Back to this chapter's index</a>
+    <a href="toc.html">Back to this chapter's index</a>
   </td>
   <td>
     <a href="../index.html">Back to the tutorial index</a>
@@ -50,7 +50,7 @@ Laplace problem by following the links below:
 <address>
 <a href="mailto:schrage@gaia.iwr.uni-heidelberg.de">Jan Schrage</a></address>
 <p>
-Last modified: Tue Mar 23 1999 
+Last modified: $Date$
 </p>
 </body>
 </html>
index 828ed585b2e1cf3b3427c953e057a39c75be715d..6719affd1917854f32c4ea00686805c0cd7d1ac2 100644 (file)
@@ -48,7 +48,7 @@
 <table class="navbar">      
 <tr>
   <td>
-    <a href="index.html">Back to this chapter's index</a>
+    <a href="toc.html">Back to this chapter's index</a>
   </td>
   <td>
     <a href="../index.html">Back to the tutorial index</a>
@@ -61,7 +61,7 @@
 <address><a href="mailto:schrage@gaia.iwr.uni-heidelberg.de">Jan Schrage</a></address>
 
 <p>
-Last modified: Tue Mar 23 1999
+Last modified: $Date$
 </p>
 </body>
 </html>
index 5b59a3fe3670419db32e0ba5334a402535ad2568..3fc8463e3b60eac7fdb63459709aa1207cc2a50a 100644 (file)
@@ -6,7 +6,6 @@
      Jan Schrage <schrage@gaia.iwr.uni-heidelberg.de> 1999 
 -->
 
-<title></title>
     <link href="../dealtut.css" rel="StyleSheet" title="deal.II Tutorial">
     <meta name="author" content="Jan Schrage <schrage@gaia.iwr.uni-heidelberg.de>">
     <meta name="keywords" content="deal.II,deal.II tutorial,deal II">
@@ -17,8 +16,8 @@
 
 <!-- Title Frame -->
 
-<img src="../../pictures/deal10.gif" alt="DEAL Logo" align="left" hspace=20>
-<h1>The deal.II tutorial - Chapter 1 - The Laplace Problem</h1>
+<img src="../../pictures/deal10.gif" alt="DEAL Logo" align="left" hspace=20 class="chapter_title">
+<h1 class="chapter_title">The deal.II tutorial - Chapter 1 - The Laplace Problem</h1>
 
 </body>
 </html>
index 304f173f5f3876f2242ac94d1e6435ccb0c0d80c..6d903a7b4a06a8b8669ae2a8cdd4c55f49c803ce 100644 (file)
@@ -90,7 +90,7 @@ contains link to all the source files.
 <address>
 <a href="mailto:schrage@gaia.iwr.uni-heidelberg.de">Jan Schrage</a></address>
 <p>
-Last modified: Tue  Mar 23 1999 
+Last modified: $DateĀ§
 </p>
 </body>
 </html>
index 0250a332c1f20b11e02a903134daa069d7f5a65d..6ee269c3ac646394d6341ba48ce88b323e29da0d 100644 (file)
@@ -41,7 +41,7 @@ This step is necessary whenever the triangulation has changed, e.g. after each r
 <table class="navbar">      
 <tr>
   <td>
-    <a href="index.html">Back to this chapter's index</a>
+    <a href="toc.html">Back to this chapter's index</a>
   </td>
   <td>
     <a href="../index.html">Back to the tutorial index</a>
@@ -55,7 +55,7 @@ This step is necessary whenever the triangulation has changed, e.g. after each r
 <address><a href="mailto:schrage@gaia.iwr.uni-heidelberg.de">Jan Schrage</a></address>
 
 <p>
-Last modified: Tue Mar 23 1999
+Last modified: $Date$
 </p>
 </body>
 </html>
index 21755183e0888d02fa951706cc72452a752c512b..cfa5c961a88b3d44ccd1edccc40f0369040ac7c8 100644 (file)
@@ -1,9 +1,8 @@
 
 body { bgcolor: white; background-color: white; }
 
-span.parhead { font-weight: bold;
-
 
+span.parhead { font-weight: bold;
             }  
 
 span.example { font-weight: bold;
index ed43164e44f415a29d201ef7d5735c82070361f3..1c59237d191d5786f8864f6a38896cdb677fd739 100644 (file)
@@ -23,7 +23,7 @@
 <table class="navbar">      
 <tr>
   <td>
-    <a href="index.html">Back to this chapter's index</a>
+    <a href="toc.html">Back to this chapter's index</a>
   </td>
   <td>
     <a href="../index.html">Back to the tutorial index</a>
@@ -34,7 +34,7 @@
 <address>
 <a href="mailto:schrage@gaia.iwr.uni-heidelberg.de">Jan Schrage</a></address>
 <p>
-Last modified: 
+Last modified: $Date$ 
 </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.