OOFEM  2.4
OOFEM.org - Object Oriented Finite Element Solver
b3mat.h
Go to the documentation of this file.
1 /*
2  *
3  * ##### ##### ###### ###### ### ###
4  * ## ## ## ## ## ## ## ### ##
5  * ## ## ## ## #### #### ## # ##
6  * ## ## ## ## ## ## ## ##
7  * ## ## ## ## ## ## ## ##
8  * ##### ##### ## ###### ## ##
9  *
10  *
11  * OOFEM : Object Oriented Finite Element Code
12  *
13  * Copyright (C) 1993 - 2013 Borek Patzak
14  *
15  *
16  *
17  * Czech Technical University, Faculty of Civil Engineering,
18  * Department of Structural Mechanics, 166 29 Prague, Czech Republic
19  *
20  * This library is free software; you can redistribute it and/or
21  * modify it under the terms of the GNU Lesser General Public
22  * License as published by the Free Software Foundation; either
23  * version 2.1 of the License, or (at your option) any later version.
24  *
25  * This program is distributed in the hope that it will be useful,
26  * but WITHOUT ANY WARRANTY; without even the implied warranty of
27  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
28  * Lesser General Public License for more details.
29  *
30  * You should have received a copy of the GNU Lesser General Public
31  * License along with this library; if not, write to the Free Software
32  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
33  */
34 
35 #ifndef b3mat_h
36 #define b3mat_h
37 
38 #include "maxwellChM.h"
39 
41 
42 #define _IFT_B3Material_Name "b3mat"
43 #define _IFT_B3Material_mode "mode"
44 #define _IFT_B3Material_shmode "shmode"
45 #define _IFT_B3Material_fc "fc"
46 #define _IFT_B3Material_cc "cc"
47 #define _IFT_B3Material_wc "w/c"
48 #define _IFT_B3Material_ac "a/c"
49 #define _IFT_B3Material_t0 "t0"
50 #define _IFT_B3Material_es0 "es0"
51 #define _IFT_B3Material_r "r"
52 #define _IFT_B3Material_rprime "rprime"
53 #define _IFT_B3Material_at "at"
54 #define _IFT_B3Material_wh "w_h"
55 #define _IFT_B3Material_ncoeff "ncoeff"
56 #define _IFT_B3Material_a "a"
57 #define _IFT_B3Material_alpha1 "alpha1"
58 #define _IFT_B3Material_alpha2 "alpha2"
59 #define _IFT_B3Material_ks "ks"
60 #define _IFT_B3Material_hum "hum"
61 #define _IFT_B3Material_vs "vs"
62 #define _IFT_B3Material_q1 "q1"
63 #define _IFT_B3Material_q2 "q2"
64 #define _IFT_B3Material_q3 "q3"
65 #define _IFT_B3Material_q4 "q4"
66 #define _IFT_B3Material_q5 "q5"
67 #define _IFT_B3Material_kt "kt"
68 #define _IFT_B3Material_EpsSinf "epssinf"
69 
70 
71 namespace oofem {
76 {
77 protected:
78  double t0;
79 
80  double w, E28;
81  double q1, q2, q3, q4, q5; // predicted data
84 
85  double EpsSinf, kt, ks, vs, hum;
87 
89  double es0, r, rprime, at;
91 
93  double w_h;
94  double n;
95  double a;
96 
97 public:
98  B3Material(int n, Domain *d) : MaxwellChainMaterial(n, d) {
99  shMode = B3_NoShrinkage;
100  }
101  virtual ~B3Material() { }
102 
103  virtual void giveShrinkageStrainVector(FloatArray &answer, GaussPoint *gp, TimeStep *tStep, ValueModeType mode);
104 
105  virtual const char *giveClassName() const { return "B3Material"; }
106  virtual const char *giveInputRecordName() const { return _IFT_B3Material_Name; }
108 
109  virtual double computeCreepFunction(double t, double t_prime, GaussPoint *gp, TimeStep *tStep);
110 
111 protected:
112  virtual int hasIncrementalShrinkageFormulation() { return 1; }
113 
114  virtual void computeTotalAverageShrinkageStrainVector(FloatArray &answer, GaussPoint *gp, TimeStep *tStep);
116  virtual void computeShrinkageStrainVector(FloatArray &answer, GaussPoint *gp, TimeStep *tStep, ValueModeType mode);
117  void predictParametersFrom(double, double, double, double, double, double, double);
118 
126  double inverse_sorption_isotherm(double w);
127 };
128 } // end namespace oofem
129 #endif // b3mat_h
double inverse_sorption_isotherm(double w)
Function calculates relative humidity from water content (inverse relation form sorption isotherm)...
Definition: b3mat.C:432
double hum
Definition: b3mat.h:85
#define _IFT_B3Material_Name
Definition: b3mat.h:42
Class and object Domain.
Definition: domain.h:115
double t0
Age when drying begins (in days)
Definition: b3mat.h:78
virtual const char * giveClassName() const
Definition: b3mat.h:105
double q2
Definition: b3mat.h:81
double vs
Definition: b3mat.h:85
ValueModeType
Type representing the mode of UnknownType or CharType, or similar types.
Definition: valuemodetype.h:78
double E28
Definition: b3mat.h:80
This class implements the B3 model for concrete creep and shrinkage.
Definition: b3mat.h:75
enum oofem::B3Material::b3ShModeType shMode
double ks
Definition: b3mat.h:85
double w
Definition: b3mat.h:80
double r
Definition: b3mat.h:89
double es0
Definition: b3mat.h:89
double kt
Definition: b3mat.h:85
This class implements an aging Maxwell chain model describing a viscoelastic material.
Definition: maxwellChM.h:68
virtual void computeTotalAverageShrinkageStrainVector(FloatArray &answer, GaussPoint *gp, TimeStep *tStep)
Definition: b3mat.C:271
double q1
Definition: b3mat.h:81
double n
Constant-exponent (obtained from experiments) n [Pedersen, 1990].
Definition: b3mat.h:94
virtual double computeCreepFunction(double t, double t_prime, GaussPoint *gp, TimeStep *tStep)
Evaluation of the creep compliance function at time t when loading is acting from time t_prime...
Definition: b3mat.C:190
double rprime
Definition: b3mat.h:89
double at
Definition: b3mat.h:89
double q3
Definition: b3mat.h:81
double EpsSinf
Definition: b3mat.h:85
double q5
Definition: b3mat.h:81
virtual IRResultType initializeFrom(InputRecord *ir)
Initializes receiver according to object description stored in input record.
Definition: b3mat.C:46
double a
Constant (obtained from experiments) A [Pedersen, 1990].
Definition: b3mat.h:95
virtual void computeShrinkageStrainVector(FloatArray &answer, GaussPoint *gp, TimeStep *tStep, ValueModeType mode)
Free shrinkage at material point, requires staggered analysis.
Definition: b3mat.C:319
double w_h
Constant water content (obtained from experiments) w_h [Pedersen, 1990].
Definition: b3mat.h:93
void predictParametersFrom(double, double, double, double, double, double, double)
Definition: b3mat.C:126
virtual void giveShrinkageStrainVector(FloatArray &answer, GaussPoint *gp, TimeStep *tStep, ValueModeType mode)
Computes, for the given integration point, the strain vector induced by stress-independent shrinkage...
Definition: b3mat.C:241
Class representing vector of real numbers.
Definition: floatarray.h:82
double q4
Definition: b3mat.h:81
IRResultType
Type defining the return values of InputRecord reading operations.
Definition: irresulttype.h:47
B3Material(int n, Domain *d)
Definition: b3mat.h:98
virtual int hasIncrementalShrinkageFormulation()
If only incremental shrinkage strain formulation is provided, then total shrinkage strain must be tra...
Definition: b3mat.h:112
Class representing the general Input Record.
Definition: inputrecord.h:101
virtual const char * giveInputRecordName() const
Definition: b3mat.h:106
virtual ~B3Material()
Definition: b3mat.h:101
the oofem namespace is to define a context or scope in which all oofem names are defined.
Class representing integration point in finite element program.
Definition: gausspoint.h:93
Class representing solution step.
Definition: timestep.h:80

This page is part of the OOFEM documentation. Copyright (c) 2011 Borek Patzak
Project e-mail: info@oofem.org
Generated at Tue Jan 2 2018 20:07:27 for OOFEM by doxygen 1.8.11 written by Dimitri van Heesch, © 1997-2011