XC Open source finite element analysis program
QuadraticCyclic.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 #ifndef QuadraticCyclic_H
28 #define QuadraticCyclic_H
29 
30 #include "CyclicModel.h"
31 #include <utility/matrix/Vector.h>
32 #include <utility/matrix/Matrix.h>
33 
34 namespace XC {
36 //
39  {
40  private:
41  double a, b, c;
42  double weightFactor, facty;
43  double qx1, qy1, qx2, qy2, qx3, qy3;
44  static Matrix X;
45  static Vector Y, A;
46  public:
47  QuadraticCyclic(int tag, double wt=0.9, double qy=0.33);
48 
49  void Print (std::ostream &, int = 0);
51  protected:
52  int createFullCycleTask();
53  int createHalfCycleTask();
54  double getTaskFactor();
55  private:
56  int solveQuad(double x1, double y1, double x2,double y2, double x3, double y);
57  double getQuadFactor(double x1, double y1, double dx);
58  int createTask(void);
59  };
60 } // end of XC namespace
61 
62 #endif
63 
void Print(std::ostream &, int=0)
Imprime el objeto.
Definition: QuadraticCyclic.cpp:193
Definition: Vector.h:82
??.
Definition: QuadraticCyclic.h:38
CyclicModel * getCopy()
Virtual constructor.
Definition: QuadraticCyclic.cpp:56
??.
Definition: CyclicModel.h:37
Definition: Matrix.h:82
================================================================================
Definition: ContinuaReprComponent.h:34