XC Open source finite element analysis program
GlueNodeToElement.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 #ifndef GlueNodeToElement_h
29 #define GlueNodeToElement_h
30 
31 // File: ~/domain/constraints/GlueNodeToElement.h
32 //
33 // Written: fmk
34 // Created: 11/96
35 // Revision: A
36 //
37 // Purpose: This file contains the class definition for GlueNodeToElement.
38 // GlueNodeToElement is a class which stores the information for a multiple
39 // retained nodes constraint. A multipoint constraint relates certain dofs at
40 // a constrained node to be related to certains dofs at multiple retained nodes:
41 
42 // The GlueNodeToElement class assumes time invariant constraints, i.e. the
43 // constraint matrix does not change over time. All the methods are declared
44 // as pure virtual, which will allow subclasses for time varying constraints.
45 //
46 
47 #include "MRMFreedom_Constraint.h"
48 
49 
50 namespace XC {
51 
53 //
56  {
57 
58  public:
59  // constructors
60  GlueNodeToElement(int tag); // LCPT
61  GlueNodeToElement(int tag, const Node &,const Element &, const ID &);
62  };
63 } // end of XC namespace
64 
65 #endif
66 
Glue a node to an element.
Definition: GlueNodeToElement.h:55
Mesh node.
Definition: Node.h:99
Base calass for the finite elements.
Definition: Element.h:104
Definition: ID.h:77
Multiple retained nodes constraint.
Definition: MRMFreedom_Constraint.h:58
================================================================================
Definition: ContinuaReprComponent.h:34
GlueNodeToElement(int tag)
Constructor.
Definition: GlueNodeToElement.cc:39