suanPan
🧮 An Open Source, Parallel and Heterogeneous Finite Element Analysis Framework
Loading...
Searching...
No Matches
SectionElement.h
Go to the documentation of this file.
1/*******************************************************************************
2 * Copyright (C) 2017-2026 Theodore Chang
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 ******************************************************************************/
28#ifndef SECTIONELEMENT_H
29#define SECTIONELEMENT_H
30
31#include <Element/Element.h>
32
33class SectionElement : public Element {
34public:
36 unsigned, // tag
37 unsigned, // number of nodes
38 unsigned, // number of dofs
39 uvec&&, // node encoding
40 uvec&&, // section tags
41 bool, // nonlinear geometry switch
42 SectionType, // section type
43 std::vector<Node::DOF>&& // dof identifier
44 );
45};
46
48public:
50 unsigned, // tag
51 unsigned, // number of nodes
52 unsigned, // number of dofs
53 uvec&&, // node encoding
54 uvec&&, // section tags
55 bool, // nonlinear geometry switch
56 std::vector<Node::DOF>&& // dof identifier
57 );
58};
59
61public:
63 unsigned, // tag
64 unsigned, // number of nodes
65 unsigned, // number of dofs
66 uvec&&, // node encoding
67 uvec&&, // section tags
68 bool, // nonlinear geometry switch
69 std::vector<Node::DOF>&& = {Node::DOF::U1, Node::DOF::U2, Node::DOF::UR3} // dof identifier
70 );
71};
72
74public:
76 unsigned, // tag
77 unsigned, // number of nodes
78 unsigned, // number of dofs
79 uvec&&, // node encoding
80 uvec&&, // section tags
81 bool, // nonlinear geometry switch
82 std::vector<Node::DOF>&& = {Node::DOF::U1, Node::DOF::U2, Node::DOF::U3, Node::DOF::UR1, Node::DOF::UR2, Node::DOF::UR3} // dof identifier
83 );
84};
85
87public:
89 unsigned, // tag
90 unsigned, // number of nodes
91 unsigned, // number of dofs
92 uvec&&, // node encoding
93 uvec&&, // section tags
94 bool, // nonlinear geometry switch
95 std::vector<Node::DOF>&& = {Node::DOF::U1, Node::DOF::U2, Node::DOF::UR3} // dof identifier
96 );
97};
98
100public:
102 unsigned, // tag
103 unsigned, // number of nodes
104 unsigned, // number of dofs
105 uvec&&, // node encoding
106 uvec&&, // section tags
107 bool, // nonlinear geometry switch
108 std::vector<Node::DOF>&& = {Node::DOF::U1, Node::DOF::U2, Node::DOF::U3, Node::DOF::UR1, Node::DOF::UR2, Node::DOF::UR3} // dof identifier
109 );
110};
111
113public:
115 unsigned, // tag
116 unsigned, // number of nodes
117 unsigned, // number of dofs
118 uvec&&, // node encoding
119 uvec&&, // section tags
120 bool, // nonlinear geometry switch
121 std::vector<Node::DOF>&& = {Node::DOF::U1, Node::DOF::U2, Node::DOF::U3, Node::DOF::UR1, Node::DOF::UR2, Node::DOF::UR3, Node::DOF::WARP} // dof identifier
122 );
123};
124
125#endif
126
A Element class.
Definition Element.h:118
Definition SectionElement.h:47
Definition SectionElement.h:60
Definition SectionElement.h:73
The SectionElement class.
Definition SectionElement.h:33
Definition SectionElement.h:86
Definition SectionElement.h:99
Definition SectionElement.h:112
SectionType
Definition Section.h:33