OOFEM 3.0
Loading...
Searching...
No Matches
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 - 2025 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
40namespace oofem {
42
43void
55
56
57double
58CebFip78Material :: computeCreepFunction(double t, double t_prime, GaussPoint *gp, TimeStep *tStep) const
59{
60 // computes the value of creep function at time t
61 // when load is acting from time t_prime
62 // t-t_prime = duration of loading
63
64 double t0 = this->kap_tt * this->kap_c * t_prime;
65 double tt = this->kap_tt * this->kap_c * t;
66
67 double e0 = E28 * sqrt( 1.36 * t0 / ( t0 + 10. ) );
68
69 double fi0 = 0.95 * pow(t0, -0.3) - 0.1;
70 if ( fi0 < 0. ) {
71 fi0 = 0.;
72 }
73
74 double firv = 0.11 + 0.2 * atan( 0.05 * pow( ( tt - t0 ), 2. / 3. ) );
75 if ( firv < 0.4 ) {
76 firv = 0.4;
77 }
78
79 double hd = this->kap_a_per_area * 1000. * 1000. / this->u;
80 if ( hd < 50. ) {
81 hd = 50.;
82 }
83 if ( hd > 1500. ) {
84 hd = 1500.;
85 }
86
87 double alpha = 0.078 * exp( -1.20 * log10(hd) );
88 double beta = 0.530 * exp( -0.13 * log10(hd) );
89
90 double fiir = 0.25 * ( 5.4 - log10(hd) ) * ( exp( -pow(alpha * t0, beta) ) - exp( -pow(alpha * tt, beta) ) );
91 fiir *= fibf;
92
93 double fi = fi0 + firv + fiir;
94
95 return ( 1. / e0 ) + fi / E28;
96}
97} // end namespace oofem
#define _IFT_CebFip78Material_kap_tt
Definition cebfip78.h:47
#define _IFT_CebFip78Material_e28
Definition cebfip78.h:43
#define _IFT_CebFip78Material_fibf
Definition cebfip78.h:44
#define _IFT_CebFip78Material_kap_a_per_area
Definition cebfip78.h:45
#define _IFT_CebFip78Material_kap_c
Definition cebfip78.h:46
#define _IFT_CebFip78Material_u
Definition cebfip78.h:48
#define REGISTER_Material(class)
double kap_c
Coefficient of type of cement.
Definition cebfip78.h:62
double kap_tt
Coefficient of temperature effects.
Definition cebfip78.h:63
double fibf
Basic creep coefficient.
Definition cebfip78.h:60
double E28
Young modulus at age of 28 days [MPa].
Definition cebfip78.h:59
double kap_a_per_area
Coefficient of hydrometric conditions.
Definition cebfip78.h:61
double u
Surface imposed to environment [mm^2]; temporary here ; should be in crosssection level.
Definition cebfip78.h:64
#define IR_GIVE_FIELD(__ir, __value, __id)
Definition inputrecord.h:67

This page is part of the OOFEM-3.0 documentation. Copyright Copyright (C) 1994-2025 Borek Patzak Bořek Patzák
Project e-mail: oofem@fsv.cvut.cz
Generated at for OOFEM by doxygen 1.15.0 written by Dimitri van Heesch, © 1997-2011