xc
ManzariDafaliasPotentialSurface.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 //
29 //================================================================================
30 //# COPYRIGHT (C): :-)) #
31 //# PROJECT: Object Oriented Finite Element Program #
32 //# PURPOSE: Manzari - Dafalias potential criterion #
33 //# CLASS: ManzariDafaliasPotentialSurface #
34 //# #
35 //# VERSION: #
36 //# LANGUAGE: C++.ver >= 2.0 ( Borland C++ ver=3.00, SUN C++ ver=2.1 ) #
37 //# TARGET OS: DOS || UNIX || . . . #
38 //# PROGRAMMER(S): Boris Jeremic, Zhaohui Yang #
39 //# #
40 //# #
41 //# DATE: August 08 '00 #
42 //# UPDATE HISTORY: #
43 //# #
44 //# #
45 //# #
46 //# #
47 //# SHORT EXPLANATION: #
48 //# #
49 //# #
50 //# #
51 //# #
52 //# #
53 //# #
54 //# #
55 //# #
56 //# #
57 //# #
58 //=============================================================================
59 //
60 
61 #ifndef ManzariDafaliasPotentialSurface_H
62 #define ManzariDafaliasPotentialSurface_H
63 
64 #include "material/nD/template_3d_ep/PotentialSurface.h"
65 
66 namespace XC {
71 {
72 
73  public:
74  PotentialSurface *getCopy(void) const; // create a clone of itself
75  ManzariDafaliasPotentialSurface(); // Default constructor
76 
77  BJtensor dQods(const EPState *EPS) const;
78  BJtensor d2Qods2(const EPState *EPS) const ;
79 
80  //aux. functions for d2Qods2
81  BJtensor dnods(const EPState *EPS) const;
82  BJtensor dthetaoverds(const EPState *EPS) const;
83  double dgoverdt(double theta, double c) const;
84  BJtensor apqdnods(const EPState *EPS) const;
85 
86  virtual void print(std::ostream &os) const;
87  };
88 
89 } // end of XC namespace
90 
91 #endif
92 
BJtensor dQods(const EPState *EPS) const
tensor dQ/dsigma_ij: the normal to the potential surface
Definition: ManzariDafaliasPotentialSurface.cpp:71
Boris Jeremic tensor class.
Definition: BJtensor.h:112
Definition: PotentialSurface.h:76
Base class for all elasto-plastic states.
Definition: EPState.h:151
virtual void print(std::ostream &os) const
Print stuff.
Definition: ManzariDafaliasPotentialSurface.cpp:417
Open source finite element program for structural analysis.
Definition: ContinuaReprComponent.h:35
PotentialSurface * getCopy(void) const
Virtual constructor.
Definition: ManzariDafaliasPotentialSurface.cpp:67
Manzari-Dafalias model potential surface.
Definition: ManzariDafaliasPotentialSurface.h:70