OOFEM 3.0
Loading...
Searching...
No Matches
quad1platesubsoil.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 quad1platesubsoil_H
36#define quad1platesubsoil_H
37
41
42#define _IFT_Quad1PlateSubSoil_Name "quad1platesubsoil"
43
44namespace oofem {
45class FEI2dQuadLin;
46
60{
61protected:
63
64public:
65 Quad1PlateSubSoil(int n, Domain * d);
66 virtual ~Quad1PlateSubSoil() { }
67
68 FEInterpolation *giveInterpolation() const override;
70
71 MaterialMode giveMaterialMode() override { return _2dPlateSubSoil; }
72 int testElementExtension(ElementExtension ext) override { return ( ( ext == Element_SurfaceLoadSupport ) ? 1 : 0 ); }
73
74 // definition & identification
75 const char *giveInputRecordName() const override { return _IFT_Quad1PlateSubSoil_Name; }
76 const char *giveClassName() const override { return "Quad1PlateSubSoil"; }
77
78 int computeNumberOfDofs() override { return 4; }
79 void giveDofManDofIDMask(int inode, IntArray &) const override;
80 Element_Geometry_Type giveGeometryType() const override {return EGT_quad_1;}
81
82
83 void computeMidPlaneNormal(FloatArray &answer, const GaussPoint *gp) override;
84
85 double giveCharacteristicLength(const FloatArray &normalToCrackPlane) override;
86 double computeVolumeAround(GaussPoint *gp) override;
87
88 void computeLumpedMassMatrix(FloatMatrix &answer, TimeStep *tStep) override;
89 void computeMassMatrix(FloatMatrix &answer, TimeStep *tStep) override
90 { computeLumpedMassMatrix(answer, tStep); }
91
92 int giveIPValue(FloatArray &answer, GaussPoint *gp, InternalStateType type, TimeStep *tStep) override;
94
95protected:
96 void computeGaussPoints() override;
97 void computeBodyLoadVectorAt(FloatArray &answer, Load *load, TimeStep *tStep, ValueModeType mode) override;
98 void computeBmatrixAt(GaussPoint *gp, FloatMatrix &answer, int = 1, int = ALL_STRAINS) override;
99
100 void computeStressVector(FloatArray &answer, const FloatArray &strain, GaussPoint *gp, TimeStep *tStep) override;
101 void computeConstitutiveMatrixAt(FloatMatrix &answer, MatResponseMode rMode, GaussPoint *gp, TimeStep *tStep) override;
102
104 void SPRNodalRecoveryMI_giveDofMansDeterminedByPatch(IntArray &answer, int pap) override;
110 void computeNmatrixAt(const FloatArray &iLocCoord, FloatMatrix &answer) override;
111 void computeSurfaceNMatrix(FloatMatrix &answer, int boundaryID, const FloatArray &lcoords) override;
112
114 //void computeSurfaceNMatrixAt(FloatMatrix &answer, int iSurf, GaussPoint *gp);
115 //void giveSurfaceDofMapping(IntArray &answer, int iSurf) const override;
116 //double computeSurfaceVolumeAround(GaussPoint *gp, int iSurf) override;
117 //int computeLoadLSToLRotationMatrix(FloatMatrix &answer, int iSurf, GaussPoint *gp) override;
119};
120} // end namespace oofem
121#endif // quad1platesubsoil_H
int numberOfGaussPoints
Definition element.h:175
int testElementExtension(ElementExtension ext) override
Quad1PlateSubSoil(int n, Domain *d)
void computeStressVector(FloatArray &answer, const FloatArray &strain, GaussPoint *gp, TimeStep *tStep) override
void computeBmatrixAt(GaussPoint *gp, FloatMatrix &answer, int=1, int=ALL_STRAINS) override
int giveIPValue(FloatArray &answer, GaussPoint *gp, InternalStateType type, TimeStep *tStep) override
Element_Geometry_Type giveGeometryType() const override
static FEI2dQuadLin interp_lin
double giveCharacteristicLength(const FloatArray &normalToCrackPlane) override
void SPRNodalRecoveryMI_giveDofMansDeterminedByPatch(IntArray &answer, int pap) override
const char * giveInputRecordName() const override
MaterialMode giveMaterialMode() override
void giveDofManDofIDMask(int inode, IntArray &) const override
void computeConstitutiveMatrixAt(FloatMatrix &answer, MatResponseMode rMode, GaussPoint *gp, TimeStep *tStep) override
void SPRNodalRecoveryMI_giveSPRAssemblyPoints(IntArray &pap) override
int SPRNodalRecoveryMI_giveNumberOfIP() override
Interface * giveInterface(InterfaceType it) override
void computeLumpedMassMatrix(FloatMatrix &answer, TimeStep *tStep) override
SPRPatchType SPRNodalRecoveryMI_givePatchType() override
double computeVolumeAround(GaussPoint *gp) override
void computeSurfaceNMatrix(FloatMatrix &answer, int boundaryID, const FloatArray &lcoords) override
FEInterpolation * giveInterpolation() const override
const char * giveClassName() const override
void computeNmatrixAt(const FloatArray &iLocCoord, FloatMatrix &answer) override
void computeMidPlaneNormal(FloatArray &answer, const GaussPoint *gp) override
int computeNumberOfDofs() override
void computeMassMatrix(FloatMatrix &answer, TimeStep *tStep) override
void computeGaussPoints() override
void computeBodyLoadVectorAt(FloatArray &answer, Load *load, TimeStep *tStep, ValueModeType mode) override
StructuralElement(int n, Domain *d)
ZZNodalRecoveryModelInterface(Element *element)
Constructor.
@ Element_SurfaceLoadSupport
Element extension for surface loads.
#define _IFT_Quad1PlateSubSoil_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