~ubuntu-branches/ubuntu/utopic/dune-grid/utopic-proposed

« back to all changes in this revision

Viewing changes to dune/grid/alugrid.hh

  • Committer: Package Import Robot
  • Author(s): Ansgar Burchardt
  • Date: 2014-02-14 10:49:16 UTC
  • mfrom: (1.3.1) (5.1.4 experimental)
  • Revision ID: package-import@ubuntu.com-20140214104916-2clchnny3eu7ks4w
Tags: 2.3.0-2
InstallĀ /usr/share/dune-grid.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
 
2
// vi: set et ts=4 sw=2 sts=2:
1
3
#ifndef DUNE_ALUGRID_HH
2
4
#define DUNE_ALUGRID_HH
3
5
 
4
6
// only include this code, if HAVE_ALUGRID is true
5
 
#if HAVE_ALUGRID
 
7
#if HAVE_ALUGRID || DOXYGEN
6
8
 
7
9
#include <dune/grid/alugrid/common/declaration.hh>
8
10
 
9
11
#include <dune/grid/alugrid/3d/alugrid.hh>
10
12
#include <dune/grid/alugrid/3d/alu3dgridfactory.hh>
11
13
 
12
 
// 2d version 
 
14
// 2d version
13
15
#include <dune/grid/alugrid/2d/alugrid.hh>
14
16
#include <dune/grid/alugrid/2d/alu2dgridfactory.hh>
15
17
 
18
20
/** @file
19
21
    @author Robert Kloefkorn
20
22
    @brief Provides base classes for ALUGrid
21
 
**/
 
23
 **/
22
24
 
23
25
namespace Dune
24
26
{
25
27
 
26
 
/**
27
 
   \brief [<em> provides \ref Dune::Grid </em>]
28
 
   \brief 3D grid with support for hexahedrons.
29
 
   @ingroup GridImplementations
30
 
   @ingroup ALUCubeGrid
31
 
   The ALUCubeGrid implements the Dune GridInterface for 3d hexahedral meshes.
32
 
   This grid can be locally adapted (non-conforming) and used in parallel
33
 
   computations using dynamic load balancing. 
34
 
 
35
 
   @note
36
 
   Adaptive parallel grid supporting dynamic load balancing. This grid supports hexahedrons - a 2d/3d simplex
37
 
   grid is also available via the grid implementation ALUSimplexGrid or ALUConformGrid.
38
 
 
39
 
   (see ALUGrid homepage: http://www.mathematik.uni-freiburg.de/IAM/Research/alugrid/)
40
 
 
41
 
   Two tools are available for partitioning :
42
 
   \li Metis ( version 4.0 and higher, see http://glaros.dtc.umn.edu/gkhome/views/metis/metis/ )
43
 
   \li ParMETIS ( http://glaros.dtc.umn.edu/gkhome/metis/parmetis/overview )
44
 
 
45
 
   \li Available Implementations 
46
 
        - Dune::ALUCubeGrid<3,3>
47
 
 
48
 
   For installation instructions see http://www.dune-project.org/external_libraries/install_alugrid.html .
49
 
*/
50
 
template< int dim, int dimworld >
51
 
class ALUCubeGrid;
52
 
  
53
 
 
54
 
 
55
 
/**
56
 
   \brief [<em> provides \ref Dune::Grid </em>]
57
 
   \brief grid with support for simplicial mesh in 2d and 3d.
58
 
   @ingroup GridImplementations
59
 
   @ingroup ALUSimplexGrid
60
 
   The ALUSimplexGrid implements the Dune GridInterface for 2d triangular and 
61
 
   3d tetrahedral meshes. 
62
 
   This grid can be locally adapted (non-conforming) and used in parallel
63
 
   computations using dynamic load balancing. 
64
 
 
65
 
   @note
66
 
   Adaptive parallel grid supporting dynamic load balancing. 
67
 
   This grid supports triangular/tetrahedral elements - a 3d cube
68
 
   grid is also available via the grid implementation ALUCubeGrid or ALUConformGrid.
69
 
 
70
 
   (see ALUGrid homepage: http://www.mathematik.uni-freiburg.de/IAM/Research/alugrid/)
71
 
 
72
 
   Two tools are available for partitioning :
73
 
   \li Metis ( version 4.0 and higher, see http://glaros.dtc.umn.edu/gkhome/views/metis/metis/ )
74
 
   \li ParMETIS ( http://glaros.dtc.umn.edu/gkhome/metis/parmetis/overview )
75
 
 
76
 
   \li Available Implementations 
77
 
          - Dune::ALUSimplexGrid<3,3> 
78
 
          - Dune::ALUSimplexGrid<2,2>
79
 
 
80
 
   For installation instructions see http://www.dune-project.org/external_libraries/install_alugrid.html .
81
 
*/
82
 
template< int dim, int dimworld >
83
 
class ALUSimplexGrid;
84
 
 
85
 
//- include declaration of ALUGrid 
 
28
  /**
 
29
     \brief [<em> provides \ref Dune::Grid </em>]
 
30
     \brief 3D grid with support for hexahedrons.
 
31
     @ingroup GridImplementations
 
32
     @ingroup ALUCubeGrid
 
33
     The ALUCubeGrid implements the Dune GridInterface for 3d hexahedral meshes.
 
34
     This grid can be locally adapted (non-conforming) and used in parallel
 
35
     computations using dynamic load balancing.
 
36
 
 
37
     @note
 
38
     Adaptive parallel grid supporting dynamic load balancing. This grid supports hexahedrons - a 2d/3d simplex
 
39
     grid is also available via the grid implementation ALUSimplexGrid or ALUConformGrid.
 
40
 
 
41
     (see ALUGrid homepage: http://www.mathematik.uni-freiburg.de/IAM/Research/alugrid/)
 
42
 
 
43
     Two tools are available for partitioning :
 
44
     \li Metis ( version 4.0 and higher, see http://glaros.dtc.umn.edu/gkhome/views/metis/metis/ )
 
45
     \li ParMETIS ( http://glaros.dtc.umn.edu/gkhome/metis/parmetis/overview )
 
46
 
 
47
     \li Available Implementations
 
48
          - Dune::ALUCubeGrid<3,3>
 
49
 
 
50
     For installation instructions see http://www.dune-project.org/external_libraries/install_alugrid.html .
 
51
   */
 
52
  template< int dim, int dimworld >
 
53
  class ALUCubeGrid;
 
54
 
 
55
 
 
56
 
 
57
  /**
 
58
     \brief [<em> provides \ref Dune::Grid </em>]
 
59
     \brief grid with support for simplicial mesh in 2d and 3d.
 
60
     @ingroup GridImplementations
 
61
     @ingroup ALUSimplexGrid
 
62
     The ALUSimplexGrid implements the Dune GridInterface for 2d triangular and
 
63
     3d tetrahedral meshes.
 
64
     This grid can be locally adapted (non-conforming) and used in parallel
 
65
     computations using dynamic load balancing.
 
66
 
 
67
     @note
 
68
     Adaptive parallel grid supporting dynamic load balancing.
 
69
     This grid supports triangular/tetrahedral elements - a 3d cube
 
70
     grid is also available via the grid implementation ALUCubeGrid or ALUConformGrid.
 
71
 
 
72
     (see ALUGrid homepage: http://www.mathematik.uni-freiburg.de/IAM/Research/alugrid/)
 
73
 
 
74
     Two tools are available for partitioning :
 
75
     \li Metis ( version 4.0 and higher, see http://glaros.dtc.umn.edu/gkhome/views/metis/metis/ )
 
76
     \li ParMETIS ( http://glaros.dtc.umn.edu/gkhome/metis/parmetis/overview )
 
77
 
 
78
     \li Available Implementations
 
79
            - Dune::ALUSimplexGrid<3,3>
 
80
            - Dune::ALUSimplexGrid<2,2>
 
81
 
 
82
     For installation instructions see http://www.dune-project.org/external_libraries/install_alugrid.html .
 
83
   */
 
84
  template< int dim, int dimworld >
 
85
  class ALUSimplexGrid;
 
86
 
 
87
  //- include declaration of ALUGrid
86
88
#include <dune/grid/alugrid/common/declaration.hh>
87
89
 
88
 
} //end  namespace Dune 
 
90
} //end  namespace Dune
89
91
 
90
 
#endif // #ifdef HAVE_ALUGRID
 
92
#endif // #ifdef HAVE_ALUGRID || DOXYGEN
91
93
 
92
94
#endif