XC Open source finite element analysis program
SmallDispCrdTransf2d.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 //SmallDispCrdTransf2d.h
28 
29 #ifndef SmallDispCrdTransf2d_h
30 #define SmallDispCrdTransf2d_h
31 
32 #include "CrdTransf2d.h"
33 
34 namespace XC {
35 
37 //
40  {
41  protected:
42  Vector &basic_to_local_resisting_force(const XC::Vector &pb, const XC::Vector &p0) const;
43  const Vector &local_to_global_resisting_force(const Vector &pl) const;
44  DbTagData &getDbTagData(void) const;
45  public:
46  SmallDispCrdTransf2d(int tag, int classTag);
47  const Vector &getPointGlobalCoordFromLocal(const Vector &) const;
48  const Vector &getPointGlobalDisplFromBasic(double xi, const Vector &) const;
49 
50  int sendSelf(CommParameters &);
51  int recvSelf(const CommParameters &);
52  };
53 } // end of XC namespace
54 
55 #endif
const Vector & getPointGlobalDisplFromBasic(double xi, const Vector &) const
Returns the vector desplazamiento expresado en coordenadas globales.
Definition: SmallDispCrdTransf2d.cc:114
Definition: Vector.h:82
Vector que almacena los dbTags de los miembros de la clase.
Definition: DbTagData.h:43
SmallDispCrdTransf2d(int tag, int classTag)
Default constructor.
Definition: SmallDispCrdTransf2d.cc:36
Vector & basic_to_local_resisting_force(const XC::Vector &pb, const XC::Vector &p0) const
Transform resisting forces from the basic system to local coordinates.
Definition: SmallDispCrdTransf2d.cc:41
const Vector & getPointGlobalCoordFromLocal(const Vector &) const
Returns the coordenadas globales del punto a partir de las locales.
Definition: SmallDispCrdTransf2d.cc:95
DbTagData & getDbTagData(void) const
Returns a vector para almacenar los dbTags de los miembros de la clase.
Definition: SmallDispCrdTransf2d.cc:177
Base class for small displacements 2D coordinate transformations.
Definition: SmallDispCrdTransf2d.h:39
int sendSelf(CommParameters &)
Envia el objeto through the channel being passed as parameter.
Definition: SmallDispCrdTransf2d.cc:184
const Vector & local_to_global_resisting_force(const Vector &pl) const
Transform resisting forces from local to global coordinates.
Definition: SmallDispCrdTransf2d.cc:68
Communication parameters between processes.
Definition: CommParameters.h:65
int recvSelf(const CommParameters &)
Receives object through the channel being passed as parameter.
Definition: SmallDispCrdTransf2d.cc:199
Base class for 2D coordinate transformation.
Definition: CrdTransf2d.h:77
================================================================================
Definition: ContinuaReprComponent.h:34