OOFEM  2.4
OOFEM.org - Object Oriented Finite Element Solver
cebfip78.C
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 #include "cebfip78.h"
36 #include "mathfem.h"
37 #include "gausspoint.h"
38 #include "classfactory.h"
39 
40 namespace oofem {
41 REGISTER_Material(CebFip78Material);
42 
45 {
46  IRResultType result; // Required by IR_GIVE_FIELD macro
47 
54 
56 }
57 
58 
59 double
60 CebFip78Material :: computeCreepFunction(double t, double t_prime, GaussPoint *gp, TimeStep *tStep)
61 {
62  // computes the value of creep function at time t
63  // when load is acting from time t_prime
64  // t-t_prime = duration of loading
65 
66  double e0;
67  double fi, fi0, firv, fiir, hd, alpha, beta;
68  double tt, t0;
69 
70  t0 = this->kap_tt * this->kap_c * t_prime;
71  tt = this->kap_tt * this->kap_c * t;
72 
73  e0 = E28 * sqrt( 1.36 * t0 / ( t0 + 10. ) );
74 
75  fi0 = 0.95 * pow(t0, -0.3) - 0.1;
76  if ( fi0 < 0. ) {
77  fi0 = 0.;
78  }
79 
80  firv = 0.11 + 0.2 * atan( 0.05 * pow( ( tt - t0 ), 2. / 3. ) );
81  if ( firv < 0.4 ) {
82  firv = 0.4;
83  }
84 
85  hd = this->kap_a_per_area * 1000. * 1000. / this->u;
86  if ( hd < 50. ) {
87  hd = 50.;
88  }
89 
90  if ( hd > 1500. ) {
91  hd = 1500.;
92  }
93 
94  alpha = 0.078 * exp( -1.20 * log10(hd) );
95  beta = 0.530 * exp( -0.13 * log10(hd) );
96 
97  fiir = 0.25 * ( 5.4 - log10(hd) ) * ( exp( -pow(alpha * t0, beta) ) - exp( -pow(alpha * tt, beta) ) );
98  fiir = fibf * fiir;
99 
100  fi = fi0 + firv + fiir;
101 
102  return ( 1. / e0 ) + fi / E28;
103 }
104 } // end namespace oofem
virtual IRResultType initializeFrom(InputRecord *ir)
Initializes receiver according to object description stored in input record.
Definition: cebfip78.C:44
double kap_tt
Coefficient of temperature effects.
Definition: cebfip78.h:63
double E28
Young modulus at age of 28 days [MPa].
Definition: cebfip78.h:59
virtual IRResultType initializeFrom(InputRecord *ir)
Initializes receiver according to object description stored in input record.
Definition: maxwellChM.C:258
#define _IFT_CebFip78Material_kap_a_per_area
Definition: cebfip78.h:45
double u
Surface imposed to environment [mm^2]; temporary here ; should be in crosssection level...
Definition: cebfip78.h:64
double fibf
Basic creep coefficient.
Definition: cebfip78.h:60
#define _IFT_CebFip78Material_u
Definition: cebfip78.h:48
#define _IFT_CebFip78Material_fibf
Definition: cebfip78.h:44
#define _IFT_CebFip78Material_kap_tt
Definition: cebfip78.h:47
IRResultType
Type defining the return values of InputRecord reading operations.
Definition: irresulttype.h:47
Class representing the general Input Record.
Definition: inputrecord.h:101
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: cebfip78.C:60
double kap_a_per_area
Coefficient of hydrometric conditions.
Definition: cebfip78.h:61
REGISTER_Material(DummyMaterial)
the oofem namespace is to define a context or scope in which all oofem names are defined.
#define _IFT_CebFip78Material_e28
Definition: cebfip78.h:43
#define IR_GIVE_FIELD(__ir, __value, __id)
Macro facilitating the use of input record reading methods.
Definition: inputrecord.h:69
Class representing integration point in finite element program.
Definition: gausspoint.h:93
double kap_c
Coefficient of type of cement.
Definition: cebfip78.h:62
Class representing solution step.
Definition: timestep.h:80
#define _IFT_CebFip78Material_kap_c
Definition: cebfip78.h:46

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