]> https://gitweb.dealii.org/ - dealii-svn.git/commitdiff
Removed some left overs from Boundary to Manifold
authorheltai <heltai@0785d39b-7218-0410-832d-ea1e28bc413d>
Tue, 19 Nov 2013 22:28:25 +0000 (22:28 +0000)
committerheltai <heltai@0785d39b-7218-0410-832d-ea1e28bc413d>
Tue, 19 Nov 2013 22:28:25 +0000 (22:28 +0000)
git-svn-id: https://svn.dealii.org/branches/branch_manifold_id@31721 0785d39b-7218-0410-832d-ea1e28bc413d

tests/bits/distorted_cells_05.cc
tests/codim_one/data_out_03.cc
tests/codim_one/extract_boundary_mesh_02.cc
tests/codim_one/extract_boundary_mesh_03.cc
tests/codim_one/extract_boundary_mesh_04.cc
tests/codim_one/mapping_02.cc
tests/deal.II/grid_output_input.cc

index a719d8713b2e14ec65b4ff6bc90c43fa29061bdb..bc03396ff88e107259eb95ef1e86443f2965fe67 100644 (file)
@@ -29,7 +29,7 @@
 #include <deal.II/grid/grid_reordering.h>
 #include <deal.II/grid/grid_tools.h>
 #include <deal.II/grid/grid_generator.h>
-#include <deal.II/grid/tria_boundary.h>
+#include <deal.II/grid/manifold.h>
 #include <deal.II/grid/grid_out.h>
 #include <deal.II/dofs/dof_handler.h>
 #include <deal.II/fe/fe_q.h>
index b37193f334d545e15adf78667ab8c9d26fa367a6..f37697cf27f75f7e6adc44633829da35b2a70233 100644 (file)
@@ -25,7 +25,7 @@
 #include <deal.II/base/function.h>
 
 #include <deal.II/grid/tria.h>
-#include <deal.II/grid/tria_boundary_lib.h>
+#include <deal.II/grid/manifold_lib.h>
 #include <deal.II/grid/grid_generator.h>
 #include <deal.II/grid/grid_tools.h>
 #include <deal.II/dofs/dof_handler.h>
@@ -79,17 +79,17 @@ int main ()
   std::map< Triangulation<2,3>::cell_iterator,
       Triangulation<3,3>::face_iterator> surface_to_volume_mapping;
 
-  HyperBallBoundary<3> boundary_description;
+  PolarManifold<3> boundary_description;
   Triangulation<3> volume_mesh;
   GridGenerator::half_hyper_ball(volume_mesh);
 
 
-  volume_mesh.set_boundary (1, boundary_description);
-  volume_mesh.set_boundary (0, boundary_description);
+  volume_mesh.set_manifold (1, boundary_description);
+  volume_mesh.set_manifold (0, boundary_description);
 
-  static HyperBallBoundary<2,3> surface_description;
-  tria.set_boundary (1, surface_description);
-  tria.set_boundary (0, surface_description);
+  static PolarManifold<3> surface_description;
+  tria.set_manifold (1, surface_description);
+  tria.set_manifold (0, surface_description);
 
   std::set<types::boundary_id> boundary_ids;
   boundary_ids.insert(0);
@@ -124,9 +124,8 @@ int main ()
 
   data_out.write_gnuplot (deallog.get_file_stream());
 
-
   dh_test.clear();
-  tria.set_boundary(0);
+  tria.set_manifold(0);
 
   return 0;
 }
index 66d32023d7181b57f38f3596e766c46e2ea5e9fe..391f84838286317a364e4400cf9204becd6cb4e8 100644 (file)
@@ -102,7 +102,7 @@ int main ()
     volume_mesh.set_manifold (0, boundary_description);
     volume_mesh.refine_global (1);
 
-    const HyperBallBoundary<dim-1,dim> surface_description;
+    const PolarManifold<dim> surface_description;
     Triangulation<dim-1,dim> boundary_mesh;
     boundary_mesh.set_manifold (0, surface_description);
 
index db3ac042456349736fc75a50d8aeecea4cd16348..532555ca713e663d9559faf2b431c0719b799edd 100644 (file)
@@ -116,7 +116,7 @@ int main ()
     volume_mesh.set_manifold (1, boundary_description);
     volume_mesh.refine_global (1);
 
-    const HyperBallBoundary<dim-1,dim> surface_description;
+    const PolarManifold<dim> surface_description;
     Triangulation<dim-1,dim> boundary_mesh;
     boundary_mesh.set_manifold (1, surface_description);
 
index 39e02bccda6642793a56a8c7c13a265d168be3f0..d63557c293bc32a0871c43d6dc5d01255a6f0e22 100644 (file)
@@ -118,7 +118,7 @@ int main ()
     volume_mesh.set_manifold (0, boundary_description);
     volume_mesh.refine_global (1);
 
-    const HyperBallBoundary<dim-1,dim> surface_description;
+    const PolarManifold<dim> surface_description;
     Triangulation<dim-1,dim> boundary_mesh;
     boundary_mesh.set_manifold (1, surface_description);
     boundary_mesh.set_manifold (0, surface_description);
index cbe2afdf201861f092bbe70c2d32fefeccc91b23..9a077a42821051fca5599b482f964731e7dd4114 100644 (file)
@@ -41,7 +41,7 @@ void test ()
   Triangulation<dim> volume_mesh;
   GridGenerator::hyper_ball(volume_mesh);
 
-  const HyperBallBoundary<dim-1,dim> surface_description;
+  const PolarManifold<dim> surface_description;
   Triangulation<dim-1,dim> boundary_mesh;
   boundary_mesh.set_manifold (0, surface_description);
 
index d8e2ee95c66844da65669646c8063aab211e1487..e5bd47ea9d2430a09f8961e6caa149b7f86f0b3d 100644 (file)
@@ -40,7 +40,7 @@ void test(std::ostream &out)
   Triangulation<dim> tr;
 
   GridGenerator::hyper_cube_with_cylindrical_hole(tr, .3, .4, 1, 1, false);
-  CylinderManifold<dim> boundary(.3, 2);
+  CylinderManifold<dim> boundary(2);
   tr.set_manifold(1, boundary);
   {
     std::ofstream grid_file("coarse_grid.inp");

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.