XC Open source finite element analysis program
ShellMecLoad.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 //ShellMecLoad.h
28 
29 #ifndef ShellMecLoad_h
30 #define ShellMecLoad_h
31 
32 
33 #include "BidimMecLoad.h"
34 
35 namespace XC {
36 class FVectorShell;
37 
39 //
42  {
43  public:
44  ShellMecLoad(int tag, int classTag,const double &Trans,const double &,const double &,const ID &theElementTags);
45  ShellMecLoad(int tag, int classTag);
46 
47  virtual void addReactionsInBasicSystem(const double &,const double &,FVectorShell &) const;
48  virtual void addFixedEndForcesInBasicSystem(const double &,const double &,FVectorShell &) const;
49 
50  virtual size_t getDimVectorFuerza(void) const;
51  virtual size_t getDimVectorMomento(void) const;
52  virtual Vector getLocalForce(void) const;
53  virtual Vector getLocalMoment(void) const;
54  virtual const Matrix &getLocalForces(void) const;
55  virtual const Matrix &getLocalMoments(void) const;
56  virtual const Matrix &getGlobalVectors(const Matrix &) const;
57  virtual const Matrix &getGlobalForces(void) const;
58  virtual const Matrix &getGlobalMoments(void) const;
59  };
60 } // end of XC namespace
61 
62 #endif
63 
virtual Vector getLocalMoment(void) const
Returns moment expressed in local coordinates.
Definition: ShellMecLoad.cc:82
virtual const Matrix & getLocalForces(void) const
Returns the componentes de los vectores fuerza.
Definition: ShellMecLoad.cc:92
Definition: Vector.h:82
virtual size_t getDimVectorMomento(void) const
Return the dimension del vector momento.
Definition: ShellMecLoad.cc:68
virtual const Matrix & getGlobalMoments(void) const
Returns the momento expresado en coordenadas globales.
Definition: ShellMecLoad.cc:167
virtual Vector getLocalForce(void) const
Returns force expressed in local coordinates.
Definition: ShellMecLoad.cc:72
virtual void addFixedEndForcesInBasicSystem(const double &, const double &, FVectorShell &) const
??
Definition: ShellMecLoad.cc:58
Ingernal forces for a shell element.
Definition: FVectorShell.h:40
virtual void addReactionsInBasicSystem(const double &, const double &, FVectorShell &) const
Adds the load al consistent load vector (ver página 108 libro Eugenio Oñate).
Definition: ShellMecLoad.cc:49
Mechanical load (forces) over shell elements.
Definition: ShellMecLoad.h:41
Definition: ID.h:77
Definition: Matrix.h:82
virtual const Matrix & getGlobalForces(void) const
Return the fuerza expresada en coordenadas globales.
Definition: ShellMecLoad.cc:163
virtual size_t getDimVectorFuerza(void) const
Return the dimension del vector fuerza.
Definition: ShellMecLoad.cc:64
Mechanical load (forces) over bidimensional elements.
Definition: BidimMecLoad.h:43
================================================================================
Definition: ContinuaReprComponent.h:34
virtual const Matrix & getLocalMoments(void) const
Returns the componentes de los vectores momento.
Definition: ShellMecLoad.cc:107
double Trans
Transverse load.
Definition: BidimMecLoad.h:46
virtual const Matrix & getGlobalVectors(const Matrix &) const
Returns the vectors expressed in global coordinates.
Definition: ShellMecLoad.cc:122