suanPan
SingleSection2D.h
Go to the documentation of this file.
1 /*******************************************************************************
2  * Copyright (C) 2017-2023 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  ******************************************************************************/
30 #ifndef SINGLESECTION2D_H
31 #define SINGLESECTION2D_H
32 
33 #include <Element/SectionElement.h>
34 
35 class SingleSection2D final : public SectionElement2D {
36  static constexpr unsigned s_node = 1, s_dof = 2;
37 
38  unique_ptr<Section> s_section;
39 
40 public:
42  unsigned, // tag
43  unsigned, // node tag
44  unsigned // section tag
45  );
46 
47  int initialize(const shared_ptr<DomainBase>&) override;
48 
49  int update_status() override;
50 
51  int commit_status() override;
52  int clear_status() override;
53  int reset_status() override;
54 
55  void print() override;
56 };
57 
58 #endif
59 
Definition: SectionElement.h:64
The SingleSection2D class.
Definition: SingleSection2D.h:35
int update_status() override
Definition: SingleSection2D.cpp:33
int commit_status() override
Definition: SingleSection2D.cpp:43
SingleSection2D(unsigned, unsigned, unsigned)
Definition: SingleSection2D.cpp:22
void print() override
Definition: SingleSection2D.cpp:49
int reset_status() override
Definition: SingleSection2D.cpp:47
int clear_status() override
Definition: SingleSection2D.cpp:45
int initialize(const shared_ptr< DomainBase > &) override
Definition: SingleSection2D.cpp:25