OOFEM 3.0
Loading...
Searching...
No Matches
structuralinterfacecrosssection.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 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 structuralinterfacecrosssection_h
36#define structuralinterfacecrosssection_h
37
39#include "crosssection.h"
40#include "classfactory.h"
41
43
44#define _IFT_StructuralInterfaceCrossSection_Name "interfacecs"
45#define _IFT_StructuralInterfaceCrossSection_Material "material"
46#define _IFT_StructuralInterfaceCrossSection_thickness "thickness"
48
49namespace oofem {
50class GaussPoint;
51class Element;
52class FloatArray;
53class FloatMatrix;
54typedef GaussPoint IntegrationPoint;
55
62{
63public:
74
76
77 void initializeFrom(InputRecord &ir) override;
78
80
96 // Pass all calls to the material
97 double giveFirstPKTraction_1d(double jump, double F, GaussPoint *gp, TimeStep *tStep ) const
98 { return this->giveInterfaceMaterial()->giveFirstPKTraction_1d(jump, F, gp, tStep); }
100 { return this->giveInterfaceMaterial()->giveFirstPKTraction_2d(jump, F, gp, tStep); }
102 { return this->giveInterfaceMaterial()->giveFirstPKTraction_3d(jump, F, gp, tStep); }
103
104
105 double giveEngTraction_1d(double jump, GaussPoint *gp, TimeStep *tStep) const
106 {
107 return this->giveInterfaceMaterial()->giveEngTraction_1d(jump, gp, tStep);
108 }
110 {
111 return this->giveInterfaceMaterial()->giveEngTraction_2d(jump, gp, tStep);
112 }
114 {
115 return this->giveInterfaceMaterial()->giveEngTraction_3d(jump, gp, tStep);
116 }
117
118 FloatMatrixF<1,1> give1dStiffnessMatrix_dTdj(MatResponseMode rMode, GaussPoint *gp, TimeStep *tStep ) const;
119 FloatMatrixF<2,2> give2dStiffnessMatrix_dTdj(MatResponseMode rMode, GaussPoint *gp, TimeStep *tStep ) const;
120 FloatMatrixF<3,3> give3dStiffnessMatrix_dTdj(MatResponseMode rMode, GaussPoint *gp, TimeStep *tStep ) const;
121
122 FloatMatrixF<1,1> give1dStiffnessMatrix_Eng(MatResponseMode rMode, GaussPoint *gp, TimeStep *tStep ) const;
123 FloatMatrixF<2,2> give2dStiffnessMatrix_Eng(MatResponseMode rMode, GaussPoint *gp, TimeStep *tStep ) const;
124 FloatMatrixF<3,3> give3dStiffnessMatrix_Eng(MatResponseMode rMode, GaussPoint *gp, TimeStep *tStep ) const;
126
128
129 int checkConsistency() override;
130
131 int giveIPValue(FloatArray &answer, GaussPoint *ip, InternalStateType type, TimeStep *tStep) override;
132
133 Material *giveMaterial(IntegrationPoint *ip) const override;
134 int giveMaterialNumber() const { return this->materialNum; }
135 void setMaterialNumber(int matNum) { this->materialNum = matNum; }
136
137 int packUnknowns(DataStream &buff, TimeStep *tStep, GaussPoint *gp) override;
138 int unpackAndUpdateUnknowns(DataStream &buff, TimeStep *tStep, GaussPoint *gp) override;
139 int estimatePackSize(DataStream &buff, GaussPoint *gp) override;
140
141 // identification and auxiliary functions
142 const char *giveClassName() const override { return "StructuralInterfaceCrossSection"; }
143 const char *giveInputRecordName() const override { return _IFT_StructuralInterfaceCrossSection_Name; }
144
146private:
148};
149} // end namespace oofem
150#endif // structuralcrosssection_h
CrossSection(int n, Domain *d)
int packUnknowns(DataStream &buff, TimeStep *tStep, GaussPoint *gp) override
int giveIPValue(FloatArray &answer, GaussPoint *ip, InternalStateType type, TimeStep *tStep) override
double giveFirstPKTraction_1d(double jump, double F, GaussPoint *gp, TimeStep *tStep) const
FloatMatrixF< 2, 2 > give2dStiffnessMatrix_dTdj(MatResponseMode rMode, GaussPoint *gp, TimeStep *tStep) const
FloatMatrixF< 1, 1 > give1dStiffnessMatrix_dTdj(MatResponseMode rMode, GaussPoint *gp, TimeStep *tStep) const
FloatMatrixF< 1, 1 > give1dStiffnessMatrix_Eng(MatResponseMode rMode, GaussPoint *gp, TimeStep *tStep) const
int testCrossSectionExtension(CrossSectExtension ext) override
FloatMatrixF< 3, 3 > give3dStiffnessMatrix_dTdj(MatResponseMode rMode, GaussPoint *gp, TimeStep *tStep) const
StructuralInterfaceMaterial * giveInterfaceMaterial() const
FloatArrayF< 3 > giveFirstPKTraction_3d(const FloatArrayF< 3 > &jump, const FloatMatrixF< 3, 3 > &F, GaussPoint *gp, TimeStep *tStep) const
int estimatePackSize(DataStream &buff, GaussPoint *gp) override
FloatArrayF< 2 > giveFirstPKTraction_2d(const FloatArrayF< 2 > &jump, const FloatMatrixF< 2, 2 > &F, GaussPoint *gp, TimeStep *tStep) const
FloatArrayF< 3 > giveEngTraction_3d(const FloatArrayF< 3 > &jump, GaussPoint *gp, TimeStep *tStep) const
double giveEngTraction_1d(double jump, GaussPoint *gp, TimeStep *tStep) const
FloatMatrixF< 3, 3 > give3dStiffnessMatrix_Eng(MatResponseMode rMode, GaussPoint *gp, TimeStep *tStep) const
FloatMatrixF< 2, 2 > give2dStiffnessMatrix_Eng(MatResponseMode rMode, GaussPoint *gp, TimeStep *tStep) const
Material * giveMaterial(IntegrationPoint *ip) const override
hidden by virtual oofem::Material* TransportCrossSection::giveMaterial() const
FloatArrayF< 2 > giveEngTraction_2d(const FloatArrayF< 2 > &jump, GaussPoint *gp, TimeStep *tStep) const
int unpackAndUpdateUnknowns(DataStream &buff, TimeStep *tStep, GaussPoint *gp) override
virtual double giveFirstPKTraction_1d(double jump, double reducedF, GaussPoint *gp, TimeStep *tStep) const
virtual FloatArrayF< 3 > giveEngTraction_3d(const FloatArrayF< 3 > &jump, GaussPoint *gp, TimeStep *tStep) const
virtual double giveEngTraction_1d(double jump, GaussPoint *gp, TimeStep *tStep) const
virtual FloatArrayF< 3 > giveFirstPKTraction_3d(const FloatArrayF< 3 > &jump, const FloatMatrixF< 3, 3 > &F, GaussPoint *gp, TimeStep *tStep) const
virtual FloatArrayF< 2 > giveFirstPKTraction_2d(const FloatArrayF< 2 > &jump, const FloatMatrixF< 2, 2 > &reducedF, GaussPoint *gp, TimeStep *tStep) const
virtual FloatArrayF< 2 > giveEngTraction_2d(const FloatArrayF< 2 > &jump, GaussPoint *gp, TimeStep *tStep) const
CrossSectExtension
Type representing cross section extension for run time testing.
@ CS_StructuralInterfaceCapability
Structural interface capability.
GaussPoint IntegrationPoint
Definition gausspoint.h:272
#define _IFT_StructuralInterfaceCrossSection_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