xc
IllConditioningAnalysis.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 //IllConditioningAnalysis.h
29 
30 
31 #ifndef IllConditioningAnalysis_h
32 #define IllConditioningAnalysis_h
33 
34 #include <solution/analysis/analysis/EigenAnalysis.h>
35 
36 namespace XC {
37  class Vector;
38  class KEigenAlgo;
39  class EigenSOE;
40  class KEigenIntegrator;
41 
43 //
46  {
47  protected:
48  friend class SolutionProcedure;
49  friend class KEigenAnalysis;
50  IllConditioningAnalysis(SolutionStrategy *analysis_aggregation);
51  Analysis *getCopy(void) const;
52  public:
53 
54  virtual int setAlgorithm(KEigenAlgo &theAlgo);
55  virtual int setIntegrator(KEigenIntegrator &theIntegrator);
56  virtual int setEigenSOE(EigenSOE &theSOE);
57  };
59  { return new IllConditioningAnalysis(*this); }
60 } // end of XC namespace
61 
62 #endif
63 
virtual int setIntegrator(KEigenIntegrator &theIntegrator)
Sets the integrator to use in the analysis.
Definition: IllConditioningAnalysis.cc:47
Base class for eigenproblem systems of equations.
Definition: EigenSOE.h:64
Integrator used to obtain the eigenvalues and eigenvectors of the stiffness matrix.
Definition: KEigenIntegrator.h:60
Base class for the object that perform the analysis.
Definition: Analysis.h:117
Eigenproblem analysis.
Definition: EigenAnalysis.h:79
IllConditioningAnalysis(SolutionStrategy *analysis_aggregation)
Constructor.
Definition: IllConditioningAnalysis.cc:39
Solution procedure for the finite element problem.
Definition: SolutionProcedure.h:57
Analysis * getCopy(void) const
Virtual constructor.
Definition: IllConditioningAnalysis.h:58
Solution strategy for the finite element problem.
Definition: SolutionStrategy.h:94
virtual int setEigenSOE(EigenSOE &theSOE)
Sets the system of eigenvalues to use in the analysis.
Definition: IllConditioningAnalysis.cc:51
Linear buckling analysis (used inside an StaticAnalysis).
Definition: IllConditioningAnalysis.h:45
Open source finite element program for structural analysis.
Definition: ContinuaReprComponent.h:35
virtual int setAlgorithm(KEigenAlgo &theAlgo)
Sets the algorithm to use in the analysis.
Definition: IllConditioningAnalysis.cc:43
Algorithm for ill-conditioning analysis.
Definition: KEigenAlgo.h:40