XC Open source finite element analysis program
BeamColumnWithSectionFDTrf2d.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 //BeamColumnWithSectionFDTrf2d.h
28 
29 #ifndef BeamColumnWithSectionFDTrf2d_h
30 #define BeamColumnWithSectionFDTrf2d_h
31 
32 #include <domain/mesh/element/truss_beam_column/BeamColumnWithSectionFD.h>
33 
34 namespace XC {
35 class Node;
36 
37 class CrdTransf;
38 class CrdTransf2d;
39 
41 //
44  {
46  protected:
47  CrdTransf2d *theCoordTransf;
48 
49  int sendData(CommParameters &cp);
50  int recvData(const CommParameters &cp);
51 
52  void set_transf(const CrdTransf *trf);
53 
54  public:
55  BeamColumnWithSectionFDTrf2d(int tag,int classTag,int numSec);
56  BeamColumnWithSectionFDTrf2d(int tag,int classTag,int numSec,const Material *mat,const CrdTransf *trf);
57  BeamColumnWithSectionFDTrf2d(int tag, int classTag,int numSec, int nodeI, int nodeJ,CrdTransf2d &coordTransf);
60  void initialize_trf(void);
61  virtual CrdTransf *getCoordTransf(void);
62  virtual const CrdTransf *getCoordTransf(void) const;
63 
64  };
65 } // end of XC namespace
66 
67 #endif
CrdTransf provides the abstraction of a frame coordinate transformation. It is an abstract base class...
Definition: CrdTransf.h:87
2D beam element with SectionForceDeformation type material.
Definition: BeamColumnWithSectionFDTrf2d.h:43
Base class for materials.
Definition: Material.h:85
int recvData(const CommParameters &cp)
Receives members through the channel being passed as parameter.
Definition: BeamColumnWithSectionFDTrf2d.cc:115
int sendData(CommParameters &cp)
Send members through the channel being passed as parameter.
Definition: BeamColumnWithSectionFDTrf2d.cc:107
void set_transf(const CrdTransf *trf)
Asigna la coordinate transformation.
Definition: BeamColumnWithSectionFDTrf2d.cc:34
~BeamColumnWithSectionFDTrf2d(void)
Destructor.
Definition: BeamColumnWithSectionFDTrf2d.cc:83
Beam-column element with SeccionBarraPrismatica material.
Definition: BeamColumnWithSectionFD.h:42
virtual CrdTransf * getCoordTransf(void)
Returns (if possible) a pointer to the coordinate transformation.
Definition: BeamColumnWithSectionFDTrf2d.cc:99
Communication parameters between processes.
Definition: CommParameters.h:65
Base class for 2D coordinate transformation.
Definition: CrdTransf2d.h:77
================================================================================
Definition: ContinuaReprComponent.h:34