XC Open source finite element analysis program
ProtoArcLength.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 //ProtoArcLength.h
28 
29 #ifndef ProtoArcLength_h
30 #define ProtoArcLength_h
31 
32 #include "solution/analysis/integrator/StaticIntegrator.h"
33 #include "IntegratorVectors.h"
34 #include "utility/matrix/Vector.h"
35 
36 namespace XC {
37 class LinearSOE;
38 class AnalysisModel;
39 class FE_Element;
40 
42 //
45  {
46  protected:
47  double arcLength2;
48  IntegratorVectors vectores;
49  int signLastDeltaLambdaStep;
50 
51  virtual double getDLambdaNewStep(void) const= 0;
52  virtual double getDLambdaUpdate(void) const= 0;
53  int sendData(CommParameters &);
54  int recvData(const CommParameters &);
55 
56  ProtoArcLength(SoluMethod *,int classTag,double ArcLength);
57  public:
58 
59  int newStep(void);
60  int update(const Vector &deltaU);
61  int domainChanged(void);
62 
63  int sendSelf(CommParameters &);
64  int recvSelf(const CommParameters &);
65  };
66 } // end of XC namespace
67 
68 #endif
69 
ArcLength is an algorithmic class for perfroming a static analysis using the arc length scheme...
Definition: ArcLength.h:80
Base class for static integrators.
Definition: StaticIntegrator.h:83
Definition: Vector.h:82
Base class for arc length integrators.
Definition: ProtoArcLength.h:44
int update(const Vector &deltaU)
Actualiza el estado del sistema.
Definition: ProtoArcLength.cc:83
Solution procedure for the finite element problem. The solution procedure is definde by specifiying: ...
Definition: SoluMethod.h:76
Vectores empleados en varios integrators.
Definition: IntegratorVectors.h:40
int domainChanged(void)
Respuesta a un cambio en el domain.
Definition: ProtoArcLength.cc:116
ProtoArcLength(SoluMethod *, int classTag, double ArcLength)
Constructor.
Definition: ProtoArcLength.cc:37
int recvData(const CommParameters &)
Receives object members through the channel being passed as parameter.
Definition: ProtoArcLength.cc:145
int sendData(CommParameters &)
Send object members through the channel being passed as parameter.
Definition: ProtoArcLength.cc:135
Communication parameters between processes.
Definition: CommParameters.h:65
================================================================================
Definition: ContinuaReprComponent.h:34