OOFEM 3.0
Loading...
Searching...
No Matches
quad1mindlin.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 quad1mindlin_H
36#define quad1mindlin_H
37
41
42#define _IFT_Quad1Mindlin_Name "quad1mindlin"
43#define _IFT_Quad1Mindlin_ReducedIntegration "reducedintegration"
44
45namespace oofem {
46class FEI2dQuadLin;
47class ParamKey;
48
68{
69protected:
73
75
76public:
77 Quad1Mindlin(int n, Domain *d);
78
79 FEInterpolation *giveInterpolation() const override;
81
82 MaterialMode giveMaterialMode() override { return _2dPlate; }
83 int testElementExtension(ElementExtension ext) override { return ( ( ext == Element_EdgeLoadSupport ) ? 1 : 0 ); }
84
85 // definition & identification
86 const char *giveInputRecordName() const override { return _IFT_Quad1Mindlin_Name; }
87 const char *giveClassName() const override { return "Quad1Mindlin"; }
88 void initializeFrom(InputRecord &ir, int priority) override;
89
90 int computeNumberOfDofs() override { return 12; }
91 void giveDofManDofIDMask(int inode, IntArray &) const override;
92 Element_Geometry_Type giveGeometryType() const override {return EGT_quad_1;}
93
94
95 void computeMidPlaneNormal(FloatArray &answer, const GaussPoint *gp) override;
96
97 double giveCharacteristicLength(const FloatArray &normalToCrackPlane) override;
98 double computeVolumeAround(GaussPoint *gp) override;
99
100 void computeLumpedMassMatrix(FloatMatrix &answer, TimeStep *tStep) override;
101 void computeMassMatrix(FloatMatrix &answer, TimeStep *tStep) override
102 { computeLumpedMassMatrix(answer, tStep); }
103
104 int giveIPValue(FloatArray &answer, GaussPoint *gp, InternalStateType type, TimeStep *tStep) override;
106
107protected:
108 void computeGaussPoints() override;
109 void computeBodyLoadVectorAt(FloatArray &answer, Load *load, TimeStep *tStep, ValueModeType mode) override;
110 void computeBmatrixAt(GaussPoint *gp, FloatMatrix &answer, int = 1, int = ALL_STRAINS) override;
111
112 void computeStressVector(FloatArray &answer, const FloatArray &strain, GaussPoint *gp, TimeStep *tStep) override;
113 void computeConstitutiveMatrixAt(FloatMatrix &answer, MatResponseMode rMode, GaussPoint *gp, TimeStep *tStep) override;
114
115 void giveEdgeDofMapping(IntArray &answer, int iEdge) const override;
116 double computeEdgeVolumeAround(GaussPoint *gp, int iEdge) override;
117 int computeLoadLEToLRotationMatrix(FloatMatrix &answer, int iEdge, GaussPoint *gp) override;
118
120 void SPRNodalRecoveryMI_giveDofMansDeterminedByPatch(IntArray &answer, int pap) override;
123};
124} // end namespace oofem
125#endif // quad1mindlin_H
int numberOfGaussPoints
Definition element.h:175
const char * giveInputRecordName() const override
void SPRNodalRecoveryMI_giveDofMansDeterminedByPatch(IntArray &answer, int pap) override
Interface * giveInterface(InterfaceType it) override
int computeNumberOfDofs() override
Quad1Mindlin(int n, Domain *d)
SPRPatchType SPRNodalRecoveryMI_givePatchType() override
void computeMassMatrix(FloatMatrix &answer, TimeStep *tStep) override
double giveCharacteristicLength(const FloatArray &normalToCrackPlane) override
void computeGaussPoints() override
FEInterpolation * giveInterpolation() const override
MaterialMode giveMaterialMode() override
void giveEdgeDofMapping(IntArray &answer, int iEdge) const override
void SPRNodalRecoveryMI_giveSPRAssemblyPoints(IntArray &pap) override
void computeConstitutiveMatrixAt(FloatMatrix &answer, MatResponseMode rMode, GaussPoint *gp, TimeStep *tStep) override
const char * giveClassName() const override
Element_Geometry_Type giveGeometryType() const override
double computeVolumeAround(GaussPoint *gp) override
void initializeFrom(InputRecord &ir, int priority) override
int computeLoadLEToLRotationMatrix(FloatMatrix &answer, int iEdge, GaussPoint *gp) override
int testElementExtension(ElementExtension ext) override
void giveDofManDofIDMask(int inode, IntArray &) const override
void computeStressVector(FloatArray &answer, const FloatArray &strain, GaussPoint *gp, TimeStep *tStep) override
double computeEdgeVolumeAround(GaussPoint *gp, int iEdge) override
void computeBmatrixAt(GaussPoint *gp, FloatMatrix &answer, int=1, int=ALL_STRAINS) override
void computeLumpedMassMatrix(FloatMatrix &answer, TimeStep *tStep) override
bool reducedIntegrationFlag
Flag controlling reduced (one - point) integration for shear.
static FEI2dQuadLin interp_lin
int giveIPValue(FloatArray &answer, GaussPoint *gp, InternalStateType type, TimeStep *tStep) override
static ParamKey IPK_Quad1Mindlin_reducedIntegration
void computeMidPlaneNormal(FloatArray &answer, const GaussPoint *gp) override
void computeBodyLoadVectorAt(FloatArray &answer, Load *load, TimeStep *tStep, ValueModeType mode) override
int SPRNodalRecoveryMI_giveNumberOfIP() override
StructuralElement(int n, Domain *d)
ZZNodalRecoveryModelInterface(Element *element)
Constructor.
@ Element_EdgeLoadSupport
Element extension for edge loads.
#define _IFT_Quad1Mindlin_Name
#define ALL_STRAINS

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