FEAT 3
Finite Element Analysis Toolbox
Loading...
Searching...
No Matches
standard_quad.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#include <kernel/geometry/mesh_part.hpp>
11
12namespace FEAT
13{
14 namespace Geometry
15 {
17 namespace TestAux
18 {
19 typedef ConformalMesh<Shape::Quadrilateral> QuadMesh;
20 typedef MeshPart<QuadMesh> QuadSubMesh;
21
22 QuadMesh* create_quad_mesh_2d(int orientation);
23
24 void validate_refined_quad_mesh_2d(const QuadMesh& mesh, int orientation);
25
26 } // namespace TestAux
28 } // namespace Geometry
29} // namespace FEAT
FEAT namespace.
Definition: adjactor.hpp:12