XC Open source finite element analysis program
Lagrange_FE.h
1 //----------------------------------------------------------------------------
2 // XC program; finite element analysis code
3 // for structural analysis and design.
4 //
5 // Copyright (C) Luis Claudio Pérez Tato
6 //
7 // This program derives from OpenSees <http://opensees.berkeley.edu>
8 // developed by the «Pacific earthquake engineering research center».
9 //
10 // Except for the restrictions that may arise from the copyright
11 // of the original program (see copyright_opensees.txt)
12 // XC is free software: you can redistribute it and/or modify
13 // it under the terms of the GNU General Public License as published by
14 // the Free Software Foundation, either version 3 of the License, or
15 // (at your option) any later version.
16 //
17 // This software is distributed in the hope that it will be useful, but
18 // WITHOUT ANY WARRANTY; without even the implied warranty of
19 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 // GNU General Public License for more details.
21 //
22 //
23 // You should have received a copy of the GNU General Public License
24 // along with this program.
25 // If not, see <http://www.gnu.org/licenses/>.
26 //----------------------------------------------------------------------------
27 
28 // File: ~/analysis/model/fe_ele/lagrange/Lagrange_FE.h
29 //
30 // Written: lcpt
31 // Created: 03/2015
32 // Revision: A
33 //
34 // Description: This file contains the class definition for Lagrange_FE.
35 // Lagrange_FE is a subclass of FE_Element which handles _Constraints
36 // using the Lagrange method.
37 //
38 // What: "@(#) Lagrange_FE.h, revA"
39 
40 
41 #ifndef Lagrange_FE_h
42 #define Lagrange_FE_h
43 
44 namespace XC {
45 class DOF_Group;
46 class ID;
47 
49 //
53  {
54  private:
55  DOF_Group *theDofGroup;
56 
57  public:
59  DOF_Group *getLagrangeDOFGroup(void)
60  { return theDofGroup; }
61  inline const DOF_Group *getLagrangeDOFGroup(void) const
62  { return theDofGroup; }
63  int getLagrangeDOFGroupTag(void) const;
64 
65  };
66 } // end of XC namespace
67 
68 #endif
69 
70 
A DOF_Group object is instantiated by the ConstraintHandler for every unconstrained node in the domai...
Definition: DOF_Group.h:94
Lagrange_FE is a subclass of FE_Element which handles _Constraints using the Lagrange method...
Definition: Lagrange_FE.h:52
================================================================================
Definition: ContinuaReprComponent.h:34
Lagrange_FE(DOF_Group &)
Constructor.
Definition: Lagrange_FE.cc:35