XC Open source finite element analysis program
CorotShellMITC4.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 //CorotShellMITC4.h
28 
29 #ifndef CorotShellMITC4_h
30 #define CorotShellMITC4_h
31 
32 #include "ShellMITC4Base.h"
33 
34 namespace XC {
35 
36 class ShellCorotCrdTransf3d;
37 
39 //
42  {
43  static ShellCorotCrdTransf3d corot_trf;
44  protected:
45  DbTagData &getDbTagData(void) const;
46 
47 
48  public:
49  CorotShellMITC4(void);
50  CorotShellMITC4(int tag,const SectionForceDeformation *ptr_mat);
51  CorotShellMITC4(int tag, int node1, int node2, int node3, int node4, SectionForceDeformation &theMaterial);
52  Element *getCopy(void) const;
53 
54  int update(void);
55 
56  int sendSelf(CommParameters &);
57  int recvSelf(const CommParameters &);
58 
59 
60  };
61 
62 } // end of XC namespace
63 
64 #endif
Base class for MIT C4 shell elements.
Definition: ShellMITC4Base.h:49
CorotShellMITC4(void)
Constructor.
Definition: CorotShellMITC4.cc:35
Vector que almacena los dbTags de los miembros de la clase.
Definition: DbTagData.h:43
Base class for 3D coordinate transformation.
Definition: ShellCorotCrdTransf3d.h:39
Base calass for the finite elements.
Definition: Element.h:104
int sendSelf(CommParameters &)
Sends object through the channel being passed as parameter.
Definition: CorotShellMITC4.cc:74
int update(void)
Actualiza los valores de las variables de estado.
Definition: CorotShellMITC4.cc:51
int recvSelf(const CommParameters &)
Receives object through the channel being passed as parameter.
Definition: CorotShellMITC4.cc:87
MIT C4 shell element.
Definition: CorotShellMITC4.h:41
DbTagData & getDbTagData(void) const
Returns a vector para almacenar los dbTags de los miembros de la clase.
Definition: CorotShellMITC4.cc:67
Base class for force deformation section models. Constitutive equations of the section.
Definition: SectionForceDeformation.h:86
Communication parameters between processes.
Definition: CommParameters.h:65
================================================================================
Definition: ContinuaReprComponent.h:34
Element * getCopy(void) const
Virtual constructor.
Definition: CorotShellMITC4.cc:47