FEAT 3
Finite Element Analysis Toolbox
Loading...
Searching...
No Matches
standard_hexa.hpp
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#pragma once
7
8// includes, FEAT
9#include <kernel/geometry/conformal_mesh.hpp>
10
11namespace FEAT
12{
13 namespace Geometry
14 {
16 namespace TestAux
17 {
18 typedef ConformalMesh<Shape::Hexahedron> HexaMesh;
19
20 HexaMesh* create_hexa_mesh_3d(int orientation);
21
22 void validate_refined_hexa_mesh_3d(const HexaMesh& mesh, int orientation);
23
24 } // namespace TestAux
26 } // namespace Geometry
27} // namespace FEAT
FEAT namespace.
Definition: adjactor.hpp:12