XC Open source finite element analysis program
SmallDispCrdTransf3d.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 //SmallDispCrdTransf3d.h
28 
29 #ifndef SmallDispCrdTransf3d_h
30 #define SmallDispCrdTransf3d_h
31 
32 #include "CrdTransf3d.h"
33 
34 namespace XC {
35 
37 //
40  {
41  const Matrix &computeRW(const Vector &nodeOffset) const;
42  protected:
43  virtual int computeElemtLengthAndOrient(void) const;
44  virtual int calculaEjesLocales(void) const;
45  Vector &basic_to_local_resisting_force(const Vector &pb, const Vector &p0) const;
46  const Vector &local_to_global_resisting_force(const Vector &pl) const;
47  Matrix &basic_to_local_stiff_matrix(const Matrix &KB) const;
48  const Matrix &local_to_global_stiff_matrix(const Matrix &kl) const;
49  DbTagData &getDbTagData(void) const;
50  public:
51  SmallDispCrdTransf3d(int tag, int classTag);
52  SmallDispCrdTransf3d(int tag, int classTag, const Vector &vecInLocXZPlane);
53 
54  double getInitialLength(void) const;
55  double getDeformedLength(void) const;
56 
57  const Vector &getBasicTrialDisp(void) const;
58  const Vector &getBasicIncrDisp(void) const;
59  const Vector &getBasicIncrDeltaDisp(void) const;
60  const Vector &getBasicTrialVel(void) const;
61  const Vector &getBasicTrialAccel(void) const;
62 
63  const Matrix &getInitialGlobalStiffMatrix(const Matrix &basicStiff) const;
64 
65  int sendSelf(CommParameters &);
66  int recvSelf(const CommParameters &);
67  };
68 } // end of XC namespace
69 
70 #endif
int recvSelf(const CommParameters &)
Receives object members through the channel being passed as parameter.
Definition: SmallDispCrdTransf3d.cc:482
SmallDispCrdTransf3d(int tag, int classTag)
Default constructor.
Definition: SmallDispCrdTransf3d.cc:36
const Vector & getBasicTrialDisp(void) const
Returns the displacements of the element to which the transformation belongs Returns the following qu...
Definition: SmallDispCrdTransf3d.cc:156
Base class for small displacements 3D coordinate transformations.
Definition: SmallDispCrdTransf3d.h:39
Definition: Vector.h:82
Vector que almacena los dbTags de los miembros de la clase.
Definition: DbTagData.h:43
int sendSelf(CommParameters &)
Sends object members through the channel being passed as parameter.
Definition: SmallDispCrdTransf3d.cc:467
double getInitialLength(void) const
Return the longitud inicial of the element.
Definition: SmallDispCrdTransf3d.cc:139
Base class for 3D coordinate transformation.
Definition: CrdTransf3d.h:80
DbTagData & getDbTagData(void) const
Returns a vector para almacenar los dbTags de los miembros de la clase.
Definition: SmallDispCrdTransf3d.cc:460
Definition: Matrix.h:82
Vector & basic_to_local_resisting_force(const Vector &pb, const Vector &p0) const
Transform resisting forces from the basic system to local coordinates.
Definition: SmallDispCrdTransf3d.cc:254
double getDeformedLength(void) const
Return the longitud of the element deformado.
Definition: SmallDispCrdTransf3d.cc:144
Communication parameters between processes.
Definition: CommParameters.h:65
================================================================================
Definition: ContinuaReprComponent.h:34