]> https://gitweb.dealii.org/ - dealii-svn.git/commitdiff
step 38 is now step 12
authorkanschat <kanschat@0785d39b-7218-0410-832d-ea1e28bc413d>
Fri, 12 Mar 2010 22:39:47 +0000 (22:39 +0000)
committerkanschat <kanschat@0785d39b-7218-0410-832d-ea1e28bc413d>
Fri, 12 Mar 2010 22:39:47 +0000 (22:39 +0000)
git-svn-id: https://svn.dealii.org/trunk@20817 0785d39b-7218-0410-832d-ea1e28bc413d

13 files changed:
deal.II/deal.II/source/numerics/mesh_worker_info.inst.in [deleted file]
deal.II/doc/doxygen/tutorial/steps.pl
deal.II/doc/doxygen/tutorial/steps.png
deal.II/examples/step-12/Makefile [moved from deal.II/examples/step-38/Makefile with 100% similarity]
deal.II/examples/step-12/doc/intro.dox [moved from deal.II/examples/step-38/doc/intro.dox with 100% similarity]
deal.II/examples/step-12/doc/results.dox [moved from deal.II/examples/step-38/doc/results.dox with 100% similarity]
deal.II/examples/step-12/doc/step-12.3d-solution.png [moved from deal.II/examples/step-38/doc/step-12.3d-solution.png with 100% similarity]
deal.II/examples/step-12/doc/step-12.grid-5.png [moved from deal.II/examples/step-38/doc/step-12.grid-5.png with 100% similarity]
deal.II/examples/step-12/doc/step-12.sol-0.png [moved from deal.II/examples/step-38/doc/step-12.sol-0.png with 100% similarity]
deal.II/examples/step-12/doc/step-12.sol-2.png [moved from deal.II/examples/step-38/doc/step-12.sol-2.png with 100% similarity]
deal.II/examples/step-12/doc/step-12.sol-5-3d.png [moved from deal.II/examples/step-38/doc/step-12.sol-5-3d.png with 100% similarity]
deal.II/examples/step-12/doc/step-12.sol-5.png [moved from deal.II/examples/step-38/doc/step-12.sol-5.png with 100% similarity]
deal.II/examples/step-12/step-12.cc [moved from deal.II/examples/step-38/step-38.cc with 99% similarity]

diff --git a/deal.II/deal.II/source/numerics/mesh_worker_info.inst.in b/deal.II/deal.II/source/numerics/mesh_worker_info.inst.in
deleted file mode 100644 (file)
index d79ce7b..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-//---------------------------------------------------------------------------
-//    $Id: fe_field_function.inst.in 19046 2009-07-08 19:30:23Z bangerth $
-//
-//    Copyright (C) 2009, 2010 by the deal.II authors
-//
-//    This file is subject to QPL and may not be  distributed
-//    without copyright and license information. Please refer
-//    to the file deal.II/doc/license.html for the  text  and
-//    further information on this license.
-//
-//---------------------------------------------------------------------------
-
-
-for (FEV : FEVALUES_BASES)
-{
-}
-
-for (FEV : FEVALUES_BASES)
-{
-//   for (TYPE : DERIVATIVE_TENSORS)
-//   {
-//     template void IntegrationInfo<deal_II_dimension, FEV>::fill_local_data(
-//       std::vector<std::vector<std::vector<TYPE > > >&, bool) const;
-//     template void IntegrationInfo<deal_II_dimension, FEV>::fill_local_data(
-//       std::vector<std::vector<std::vector<TYPE > > >&, VectorSelector&, bool) const;
-//   }
-//     for (VECTOR : SERIAL_VECTORS)
-//       {
-//       }
- }
-
-
-
index e08b71fc829db59c9f1921425e9f6072296c33f5..d621e0662ee22c8d9dd8dfac8e29b2f4e42e89bb 100644 (file)
@@ -59,8 +59,6 @@ my %attribute = (
     23 => $timeapplication,
     24 => $timeapplication,
     25 => $timeapplication,
-
-    38 => $unfinished
     );
 
 # Print a preamble setting common attributes
@@ -118,8 +116,6 @@ Step06 -> Step16;
 Step16 -> Step37;
 Step05 -> Step37;
 
-Step12 -> Step38;
-Step38 -> Step12;
 Step12 -> Step33;
 
 Step06 -> Step13;
index ecdd3b0b981b2364e4119fb2be166f78f34ff603..544f010952b141f155949b6f5e88ebf1765844df 100644 (file)
Binary files a/deal.II/doc/doxygen/tutorial/steps.png and b/deal.II/doc/doxygen/tutorial/steps.png differ
similarity index 99%
rename from deal.II/examples/step-38/step-38.cc
rename to deal.II/examples/step-12/step-12.cc
index e672ba2a29915ca6130b5af022e64fd6f97b12b9..8eff89bddf586ce3be512f2ebccee5d2a13fef5c 100644 (file)
@@ -463,7 +463,7 @@ void Step12<dim>::integrate_cell_term (DoFInfo& dinfo, CellInfo& info)
 template <int dim>
 void Step12<dim>::integrate_boundary_term (DoFInfo& dinfo, FaceInfo& info)
 {
-  const FEValuesBase<dim>& fe_v = info.fe_values();
+  const FEFaceValuesBase<dim>& fe_v = info.fe_values();
   FullMatrix<double>& local_matrix = dinfo.matrix(0).matrix;
   Vector<double>& local_vector = dinfo.vector(0).block(0);
 
@@ -514,12 +514,12 @@ void Step12<dim>::integrate_face_term (DoFInfo& dinfo1, DoFInfo& dinfo2,
                                   // etc., we use the
                                   // FEFaceValuesBase object of the
                                   // first argument.
-  const FEValuesBase<dim>& fe_v = info1.fe_values();
+  const FEFaceValuesBase<dim>& fe_v = info1.fe_values();
 
                                   // For additional shape functions,
                                   // we have to ask the neighbors
                                   // FEFaceValuesBase.
-  const FEValuesBase<dim>& fe_v_neighbor = info2.fe_values();
+  const FEFaceValuesBase<dim>& fe_v_neighbor = info2.fe_values();
 
                                   // Then we get references to the
                                   // four local matrices. The letters

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.