xc
HHTBase.h
1 // -*-c++-*-
2 //----------------------------------------------------------------------------
3 // XC program; finite element analysis code
4 // for structural analysis and design.
5 //
6 // Copyright (C) Luis C. Pérez Tato
7 //
8 // This program derives from OpenSees <http://opensees.berkeley.edu>
9 // developed by the «Pacific earthquake engineering research center».
10 //
11 // Except for the restrictions that may arise from the copyright
12 // of the original program (see copyright_opensees.txt)
13 // XC is free software: you can redistribute it and/or modify
14 // it under the terms of the GNU General Public License as published by
15 // the Free Software Foundation, either version 3 of the License, or
16 // (at your option) any later version.
17 //
18 // This software is distributed in the hope that it will be useful, but
19 // WITHOUT ANY WARRANTY; without even the implied warranty of
20 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 // GNU General Public License for more details.
22 //
23 //
24 // You should have received a copy of the GNU General Public License
25 // along with this program.
26 // If not, see <http://www.gnu.org/licenses/>.
27 //----------------------------------------------------------------------------
28 //HHTBase.h,v $
29 
30 
31 #ifndef HHTBase_h
32 #define HHTBase_h
33 
34 // Written: Andreas Schellenberg (andreas.schellenberg@gmx.net)
35 // Created: 02/05
36 // Revision: A
37 //
38 // Description: This file contains the class definition for HHTBase.
39 // HHTBase is an algorithmic class for performing a transient analysis
40 // using the HHTBase integration scheme.
41 //
42 // What: "@(#) HHTBase.h, revA"
43 
44 #include "solution/analysis/integrator/transient/rayleigh/HHTRayleighBase.h"
45 
46 namespace XC {
47 
49 //
53 class HHTBase: public HHTRayleighBase
54  {
55  protected:
56  double beta;
57  double c1;
58 
59  int sendData(Communicator &);
60  int recvData(const Communicator &);
61 
62  HHTBase(SolutionStrategy *,int classTag);
63  HHTBase(SolutionStrategy *,int classTag,double alpha);
64  HHTBase(SolutionStrategy *,int classTag,double alpha,const RayleighDampingFactors &rF);
65  HHTBase(SolutionStrategy *,int classTag,double alpha, double beta, double gamma);
66  HHTBase(SolutionStrategy *,int classTag,double alpha, double beta, double gamma,const RayleighDampingFactors &rF);
67  };
68 } // end of XC namespace
69 
70 #endif
double alpha
should be between 0.67 and 1.0 (alpha factor corresponds to Newmark method.
Definition: HHTRayleighBase.h:47
double c1
parameter
Definition: HHTBase.h:57
Communication parameters between processes.
Definition: Communicator.h:66
HHTRayleighBase is a base for the classes performing a transient analysis using the Hilber-Hughes-Tay...
Definition: HHTRayleighBase.h:44
int sendData(Communicator &)
Send object members through the communicator argument.
Definition: HHTBase.cc:116
int recvData(const Communicator &)
Receives object members through the communicator argument.
Definition: HHTBase.cc:124
HHTBase is an algorithmic class for performing a transient analysis using the HHTBase integration sch...
Definition: HHTBase.h:53
double gamma
factor.
Definition: HHTRayleighBase.h:49
Rayleigh damping factors.
Definition: RayleighDampingFactors.h:59
Solution strategy for the finite element problem.
Definition: SolutionStrategy.h:94
Open source finite element program for structural analysis.
Definition: ContinuaReprComponent.h:35
HHTBase(SolutionStrategy *, int classTag)
Constructor.
Definition: HHTBase.cc:65