OOFEM 3.0
Loading...
Searching...
No Matches
intmatbilinearcz.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 - 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 program is free software; you can redistribute it and/or modify
21 * it under the terms of the GNU General Public License as published by
22 * the Free Software Foundation; either version 2 of the License, or
23 * (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
28 * GNU General Public License for more details.
29 *
30 * You should have received a copy of the GNU General Public License
31 * along with this program; if not, write to the Free Software
32 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
33 */
34
35#ifndef INTMATBILINEARCZ_H_
36#define INTMATBILINEARCZ_H_
37
40
42
43#define _IFT_IntMatBilinearCZ_Name "intmatbilinearcz"
44#define _IFT_IntMatBilinearCZ_PenaltyStiffness "kn"
45#define _IFT_IntMatBilinearCZ_g1c "g1c"
46#define _IFT_IntMatBilinearCZ_g2c "g2c"
47#define _IFT_IntMatBilinearCZ_mu "mu"
48#define _IFT_IntMatBilinearCZ_gamma "gamma"
49#define _IFT_IntMatBilinearCZ_sigf "sigf"
50#define _IFT_IntMatBilinearCZ_semiexplicit "semiexplicit"
52
53namespace oofem {
58{
59public:
61
63 double mDamageNew = 0., mDamageOld = 0.;
64
67
70
76
77 const char *giveClassName() const override { return "IntMatBilinearCZStatus"; }
78
79 void initTempStatus() override;
80 void updateYourself(TimeStep *tStep) override;
81
83 void copyStateVariables(const MaterialStatus &iStatus) override;
84 void addStateVariables(const MaterialStatus &iStatus) override;
85};
86
87
94{
95protected:
96 double mPenaltyStiffness = 0.;
97 double mGIc = 0.; // fracture energy, mode 1
98 double mGIIc = 0.; // fracture energy, mode 2
99 double mSigmaF = 0.; // max stress
100
101 double mMu = 0.; // loading function parameter
102 double mGamma = 0.; // loading function parameter
103
104 bool mSemiExplicit = false; // If semi-explicit time integration should be used
105
106 int checkConsistency() override;
107
108public:
109 IntMatBilinearCZ(int n, Domain * d);
110
111 const char *giveClassName() const override { return "IntMatBilinearCZ"; }
112 const char *giveInputRecordName() const override { return _IFT_IntMatBilinearCZ_Name; }
113
114 FloatArrayF<3> giveFirstPKTraction_3d(const FloatArrayF<3> &jump, const FloatMatrixF<3,3> &F, GaussPoint *gp, TimeStep *tStep) const override;
115
116 // Dummy implementation, we must rely on numerical computation of the tangent.
117 FloatMatrixF<3,3> give3dStiffnessMatrix_dTdj(MatResponseMode rMode, GaussPoint *gp, TimeStep *tStep) const override;
118
119 bool hasAnalyticalTangentStiffness() const override { return false; }
120
121private:
122 // Help functions
123 double computeYieldFunction(double iTractionNormal, double iTractionTang) const;
124 FloatArrayF<3> computeTraction(const FloatArrayF<3> &iTTrial, double iPlastMultInc) const;
125
126public:
127 void initializeFrom(InputRecord &ir) override;
128 void giveInputRecord(DynamicInputRecord &input) override;
129
130 std::unique_ptr<MaterialStatus> CreateStatus(GaussPoint *gp) const override { return std::make_unique<IntMatBilinearCZStatus>(gp); }
131 void printYourself() override;
132};
133} /* namespace oofem */
134#endif /* INTMATBILINEARCZ_H_ */
FloatArrayF< 3 > mTractionOld
Traction.
double mDamageNew
damage variable
void updateYourself(TimeStep *tStep) override
FloatArrayF< 3 > mJumpOld
Discontinuity.
const char * giveClassName() const override
void copyStateVariables(const MaterialStatus &iStatus) override
Functions for MaterialStatusMapperInterface.
void addStateVariables(const MaterialStatus &iStatus) override
void giveInputRecord(DynamicInputRecord &input) override
void printYourself() override
Prints receiver state on stdout. Useful for debugging.
FloatArrayF< 3 > giveFirstPKTraction_3d(const FloatArrayF< 3 > &jump, const FloatMatrixF< 3, 3 > &F, GaussPoint *gp, TimeStep *tStep) const override
void initializeFrom(InputRecord &ir) override
FloatArrayF< 3 > computeTraction(const FloatArrayF< 3 > &iTTrial, double iPlastMultInc) const
bool hasAnalyticalTangentStiffness() const override
std::unique_ptr< MaterialStatus > CreateStatus(GaussPoint *gp) const override
const char * giveClassName() const override
double computeYieldFunction(double iTractionNormal, double iTractionTang) const
int checkConsistency() override
const char * giveInputRecordName() const override
FloatMatrixF< 3, 3 > give3dStiffnessMatrix_dTdj(MatResponseMode rMode, GaussPoint *gp, TimeStep *tStep) const override
IntMatBilinearCZ(int n, Domain *d)
StructuralInterfaceMaterialStatus(GaussPoint *g)
Constructor. Creates new StructuralInterfaceMaterialStatus with number n, belonging to domain d and I...
#define _IFT_IntMatBilinearCZ_Name

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