XC Open source finite element analysis program
YS_Section2D01.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 // @ rkaul@stanford.edu
28 // @ ggd@stanford.edu
29 
30 #include "YieldSurfaceSection2d.h"
31 
32 #ifndef YS_Section2D01_h
33 #define YS_Section2D01_h
34 
35 namespace XC {
37 //
41  {
42  private:
43  double E, A, I;
44  protected:
45  void getSectionStiffness(Matrix &Ks);
46  public:
47  YS_Section2D01(int tag, double E, double A, double I,YieldSurface_BC *ptrys, bool use_kr=true);
48  YS_Section2D01(int tag);
49  YS_Section2D01(void);
50 
51  const Matrix &getInitialTangent(void) const;
52  SectionForceDeformation *getCopy(void) const;
53  void Print(std::ostream &s, int flag =0);
54  };
55 } // end of XC namespace
56 
57 #endif
void Print(std::ostream &s, int flag=0)
Imprime el objeto.
Definition: YS_Section2D01.cpp:80
Definition: Matrix.h:82
Yield surface.
Definition: YieldSurface_BC.h:46
Base class for cross sections with yield surface on a bi-dimensional space (three DOFs for each secti...
Definition: YieldSurfaceSection2d.h:51
Cross section with yield surface on a bi-dimensional problem (three DOFs for each section)...
Definition: YS_Section2D01.h:40
Base class for force deformation section models. Constitutive equations of the section.
Definition: SectionForceDeformation.h:86
SectionForceDeformation * getCopy(void) const
Virtual constructor.
Definition: YS_Section2D01.cpp:77
================================================================================
Definition: ContinuaReprComponent.h:34