IOSS 2.0
Loading...
Searching...
No Matches
Ioss_Tet7.h
Go to the documentation of this file.
1// Copyright(C) 1999-2024 National Technology & Engineering Solutions
2// of Sandia, LLC (NTESS). Under the terms of Contract DE-NA0003525 with
3// NTESS, the U.S. Government retains certain rights in this software.
4//
5// See packages/seacas/LICENSE for details
6
7#pragma once
8
9#include "ioss_export.h"
10
11#include "Ioss_CodeTypes.h" // for IntVector
12#include "Ioss_ElementTopology.h" // for ElementTopology
13
14// STL Includes
15
16namespace Ioss {
17 class IOSS_EXPORT Tet7 : public Ioss::ElementTopology
18 {
19
20 public:
21 static const char *name;
22
23 static void factory();
24 Tet7(const Tet7 &) = delete;
25
26 ElementShape shape() const override { return ElementShape::TET; }
27 int spatial_dimension() const override;
28 int parametric_dimension() const override;
29 bool is_element() const override { return true; }
30 bool is_shell() const override { return false; }
31 int order() const override;
32
33 int number_corner_nodes() const override;
34 int number_nodes() const override;
35 int number_edges() const override;
36 int number_faces() const override;
37
38 int number_nodes_edge(int edge = 0) const override;
39 int number_nodes_face(int face = 0) const override;
40 int number_edges_face(int face = 0) const override;
41
42 bool edges_similar() const override;
43 bool faces_similar() const override;
44
45 Ioss::IntVector edge_connectivity(int edge_number) const override;
46 Ioss::IntVector face_connectivity(int face_number) const override;
47 Ioss::IntVector element_connectivity() const override;
48
49 Ioss::IntVector face_edge_connectivity(int face_number) const override;
50
51 Ioss::ElementTopology *face_type(int face_number = 0) const override;
52 Ioss::ElementTopology *edge_type(int edge_number = 0) const override;
53
54 protected:
55 Tet7();
56 };
57} // namespace Ioss
Represents an element topology.
Definition Ioss_ElementTopology.h:69
Definition Ioss_Tet7.h:18
static const char * name
Definition Ioss_Tet7.h:21
Tet7(const Tet7 &)=delete
ElementShape shape() const override
Definition Ioss_Tet7.h:26
bool is_element() const override
Definition Ioss_Tet7.h:29
bool is_shell() const override
Definition Ioss_Tet7.h:30
The main namespace for the Ioss library.
Definition Ioad_DatabaseIO.C:40
ElementShape
Definition Ioss_ElementTopology.h:24
std::vector< int > IntVector
Definition Ioss_CodeTypes.h:21