xc
TDConcreteMC10NL.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 ** OpenSees - Open System for Earthquake Engineering Simulation **
30 ** Pacific Earthquake Engineering Research Center **
31 ** **
32 ** **
33 ** (C) Copyright 1999, The Regents of the University of California **
34 ** All Rights Reserved. **
35 ** **
36 ** Commercial use of this program without express permission of the **
37 ** University of California, Berkeley, is strictly prohibited. See **
38 ** file 'COPYRIGHT' in main directory for information on usage and **
39 ** redistribution, and for a DISCLAIMER OF ALL WARRANTIES. **
40 ** **
41 ** Developed by: **
42 ** Frank McKenna (fmckenna@ce.berkeley.edu) **
43 ** Gregory L. Fenves (fenves@ce.berkeley.edu) **
44 ** Filip C. Filippou (filippou@ce.berkeley.edu) **
45 ** **
46 ** ****************************************************************** */
47 
48 //----------------------------------------------------------------------------------------------------------------------------
49 // Developed by:
50 // Nikola D. Tosic (ntosic@imk.grf.bg.ac.rs)
51 // Department for Materials and Structure, Faculty of Civil Engineering, University of Belgrade, Serbia
52 // Adam M. Knaack (adam.knaack@schaefer-inc.com)
53 // Schaefer-Inc, Cincinnati, Ohio, USA
54 // Yahya C. Kurama (ykurama@nd.edu)
55 // Department of Civil and Environmental Engineering and Earth Sciences, College of Engineering, University of Notre Dame, Notre Dame, Indiana, USA
56 //----------------------------------------------------------------------------------------------------------------------------
57 
58 //----------------------------------------------------------------------------------------------------------------------------
59 // Created: 2019
60 // Last updated: 2019
61 //----------------------------------------------------------------------------------------------------------------------------
62 
63 //----------------------------------------------------------------------------------------------------------------------------
64 // Description: This file contains the source code of TDConcreteMC10NL.
65 // TDConcreteMC10NL is a time-dependent concrete material model that calculates
66 // creep and shrinkage strains.
67 /*-------------------------------
68 ! Concrete Compression - Non-linear with linear softening
69 ! Concrete Tension - Tamai, S., Shima, H., Izumo, J., Okamura, H. 1988. Average Stress-Strain Relationship in Post Yield Range of Steel Bar in Concrete, Concrete Library of JSCE, No. 11, 117-129.
70 ! Concrete Creep - Linear superposition of creep coefficient, Model Code 2010 time function
71 ! Concrete Shrinkage - Model Code 2010 time function
72 -------------------------------*/
73 // Detailed descriptions of the model and its implementation can be found in the following:
74 // (1) Knaack, A.M., Kurama, Y.C. 2018. Modeling Time-Dependent Deformations: Application for Reinforced Concrete Beams with
75 // Recycled Concrete Aggregates. ACI Structural J. 115, 175�190. doi:10.14359/51701153
76 // (2) Knaack, A.M., 2013. Sustainable concrete structures using recycled concrete aggregate: short-term and long-term behavior
77 // considering material variability. PhD Dissertation, Civil and Environmental Engineering and Earth Sciences, University of Notre Dame, Notre Dame, Indiana, USA, 680 pp.
78 // A manual describing the use of the model and sample files can be found at:
79 // <https://data.mendeley.com/datasets/z4gxnhchky/3>
80 //----------------------------------------------------------------------------------------------------------------------------
81 
82 //----------------------------------------------------------------------------------------------------------------------------
83 // Disclaimer: This software is provided �as is�, without any warranties, expressed or implied. In no event shall the developers be liable for any claim, damages, or liability arising from or in connection with this software.
84 //----------------------------------------------------------------------------------------------------------------------------
85 
86 #ifndef TDConcreteMC10NL_h
87 #define TDConcreteMC10NL_h
88 
89 #include "material/uniaxial/concrete/TDConcreteMC10Base.h"
90 
91 namespace XC {
92 
94  {
95  private:
96  double fcu;
97 
98  void Tens_Envlp (double epsc, double &sigc, double &Ect);
99  void Compr_Envlp (double epsc, double &sigc, double &Ect);
100  public:
101  TDConcreteMC10NL(int tag= 0);
102  TDConcreteMC10NL(int tag, double _fc, double _fcu, double _espcu, double _ft, double _Ec, double _Ecm, double _beta, double _age, double _epsba, double _epsbb, double _epsda, double _epsdb, double _phiba, double _phibb, double _phida, double _phidb, double _tcast, double _cem);
103  void setup_parameters(void);
104 
105  virtual ~TDConcreteMC10NL(void);
106 
107  UniaxialMaterial *getCopy(void) const;
108 
109  double getFcu(void) const;
110  void setFcu(const double &);
111 
112  int setTrialStrain(double strain, double strainRate = 0.0);
113  double setCreepBasicStrain(double time, double stress); //Added by AMK //ntosic: split into basic and drying creep
114  double setCreepDryingStrain(double time, double stress); //Added by AMK //ntosic: split into basic and drying creep
115  double setStress(double strain, double &stiff); //Added by AMK
116 
117  int commitState(void);
118 
119  void Print(std::ostream &, int flag =0);
120  };
121 
122 } // end of XC namespace
123 
124 #endif
125 
void setup_parameters(void)
Sets initial values for the concrete parameters.
Definition: TDConcreteMC10NL.cpp:91
Base class for uniaxial materials.
Definition: UniaxialMaterial.h:93
int setTrialStrain(double strain, double strainRate=0.0)
Sets the value of the trial strain.
Definition: TDConcreteMC10NL.cpp:166
Definition: TDConcreteMC10Base.h:55
double getFcu(void) const
Get stress at ultimate (crushing) strain.
Definition: TDConcreteMC10NL.cpp:121
UniaxialMaterial * getCopy(void) const
Virtual constructor.
Definition: TDConcreteMC10NL.cpp:117
void setFcu(const double &)
Set stress at ultimate (crushing) strain.
Definition: TDConcreteMC10NL.cpp:125
Open source finite element program for structural analysis.
Definition: ContinuaReprComponent.h:35
Definition: TDConcreteMC10NL.h:93