FEAT 3
Finite Element Analysis Toolbox
Loading...
Searching...
No Matches
mesh_file_reader-eickt.cpp
1// FEAT3: Finite Element Analysis Toolbox, Version 3
2// Copyright (C) 2010 by Stefan Turek & the FEAT group
3// FEAT3 is released under the GNU General Public License version 3,
4// see the file 'copyright.txt' in the top level directory for details.
5
6// includes, FEAT
7#include <kernel/geometry/mesh_file_reader.hpp>
8
9namespace FEAT
10{
11 namespace Geometry
12 {
13 template class MeshNodeLinker<ConformalMesh<Shape::Simplex<2>, 2, Real>>;
14 template class MeshNodeLinker<ConformalMesh<Shape::Simplex<3>, 3, Real>>;
15 template class MeshNodeLinker<ConformalMesh<Shape::Hypercube<2>, 2, Real>>;
16 template class MeshNodeLinker<ConformalMesh<Shape::Hypercube<3>, 3, Real>>;
17
18 template void MeshFileReader::parse<ConformalMesh<Shape::Simplex<2>, 2, Real>>(
19 MeshNodeLinker<ConformalMesh<Shape::Simplex<2>, 2, Real>>&,
20 RootMeshNode<ConformalMesh<Shape::Simplex<2>, 2, Real>>&,
21 MeshAtlas<ConformalMesh<Shape::Simplex<2>, 2, Real>>&,
22 PartitionSet*);
23 template void MeshFileReader::parse<ConformalMesh<Shape::Simplex<3>, 3, Real>>(
24 MeshNodeLinker<ConformalMesh<Shape::Simplex<3>, 3, Real>>&,
25 RootMeshNode<ConformalMesh<Shape::Simplex<3>, 3, Real>>&,
26 MeshAtlas<ConformalMesh<Shape::Simplex<3>, 3, Real>>&,
27 PartitionSet*);
28 template void MeshFileReader::parse<ConformalMesh<Shape::Hypercube<2>, 2, Real>>(
29 MeshNodeLinker<ConformalMesh<Shape::Hypercube<2>, 2, Real>>&,
30 RootMeshNode<ConformalMesh<Shape::Hypercube<2>, 2, Real>>&,
31 MeshAtlas<ConformalMesh<Shape::Hypercube<2>, 2, Real>>&,
32 PartitionSet*);
33 template void MeshFileReader::parse<ConformalMesh<Shape::Hypercube<3>, 3, Real>>(
34 MeshNodeLinker<ConformalMesh<Shape::Hypercube<3>, 3, Real>>&,
35 RootMeshNode<ConformalMesh<Shape::Hypercube<3>, 3, Real>>&,
36 MeshAtlas<ConformalMesh<Shape::Hypercube<3>, 3, Real>>&,
37 PartitionSet*);
38 } // namespace Geometry
39} // namespace FEAT
FEAT namespace.
Definition: adjactor.hpp:12
double Real
Real data type.