OOFEM 3.0
Loading...
Searching...
No Matches
wedge_ht.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 wedge_ht_h
36#define wedge_ht_h
37
39#include "spatiallocalizer.h"
43
44#define _IFT_Wedge_ht_Name "wedgeht"
45#define _IFT_Wedge_hmt_Name "wedgehmt"
46#define _IFT_Wedge_mt_Name "wedgemt"
47
48namespace oofem {
49class FEI3dWedgeLin;
50
55{
56protected:
58
59public:
60 Wedge_ht(int, Domain *);
61
62 double computeVolumeAround(GaussPoint *gp) override;
63 FEInterpolation *giveInterpolation() const override;
64
65 // definition & identification
66 const char *giveInputRecordName() const override { return _IFT_Wedge_ht_Name; }
67 const char *giveClassName() const override { return "Wedge_ht"; }
68 Element_Geometry_Type giveGeometryType() const override {return EGT_wedge_1;}
69
70
71 int computeNumberOfDofs() override { return 6; }
72 void initializeFrom(InputRecord &ir, int priority) override;
73 MaterialMode giveMaterialMode() override { return _3dHeat; }
74
77 { return ( ext == Element_EdgeLoadSupport );}
78
80 void SPRNodalRecoveryMI_giveDofMansDeterminedByPatch(IntArray &answer, int pap) override;
83 void NodalAveragingRecoveryMI_computeNodalValue(FloatArray &answer, int node, InternalStateType type, TimeStep *tStep) override;
84
85 protected:
86 void computeGaussPoints() override;
87 double computeEdgeVolumeAround(GaussPoint *gp, int iEdge) override;
88};
89
90
94class Wedge_hmt : public Wedge_ht
95{
96public:
97 Wedge_hmt(int n, Domain * d);
98
99 const char *giveInputRecordName() const override { return _IFT_Wedge_hmt_Name; }
100 const char *giveClassName() const override { return "Wedge_hmt"; }
101 int computeNumberOfDofs() override { return 12; }
102 MaterialMode giveMaterialMode() override { return _3dHeMo; }
103};
104
108class Wedge_mt : public Wedge_ht
109{
110public:
111 Wedge_mt(int n, Domain * d);
112
113 const char *giveInputRecordName() const override { return _IFT_Wedge_mt_Name; }
114 const char *giveClassName() const override { return "Wedge_mt"; }
115 int computeNumberOfDofs() override { return 6; }
116 MaterialMode giveMaterialMode() override { return _3dHeat; }
117};
118
119} // end namespace oofem
120#endif
SpatialLocalizerInterface(Element *element)
TransportElement(int n, Domain *d, ElementMode em=HeatTransferEM)
MaterialMode giveMaterialMode() override
Definition wedge_ht.h:102
const char * giveInputRecordName() const override
Definition wedge_ht.h:99
int computeNumberOfDofs() override
Definition wedge_ht.h:101
const char * giveClassName() const override
Definition wedge_ht.h:100
Wedge_hmt(int n, Domain *d)
Definition wedge_ht.C:60
void NodalAveragingRecoveryMI_computeNodalValue(FloatArray &answer, int node, InternalStateType type, TimeStep *tStep) override
Definition wedge_ht.C:178
Element_Geometry_Type giveGeometryType() const override
Definition wedge_ht.h:68
const char * giveInputRecordName() const override
Definition wedge_ht.h:66
int computeNumberOfDofs() override
Definition wedge_ht.h:71
int SPRNodalRecoveryMI_giveNumberOfIP() override
Definition wedge_ht.C:164
Wedge_ht(int, Domain *)
Definition wedge_ht.C:55
void SPRNodalRecoveryMI_giveSPRAssemblyPoints(IntArray &pap) override
Definition wedge_ht.C:136
FEInterpolation * giveInterpolation() const override
Definition wedge_ht.C:112
void computeGaussPoints() override
Definition wedge_ht.C:81
double computeEdgeVolumeAround(GaussPoint *gp, int iEdge) override
Definition wedge_ht.C:104
static FEI3dWedgeLin interpolation
Definition wedge_ht.h:57
void SPRNodalRecoveryMI_giveDofMansDeterminedByPatch(IntArray &answer, int pap) override
Definition wedge_ht.C:145
const char * giveClassName() const override
Definition wedge_ht.h:67
void initializeFrom(InputRecord &ir, int priority) override
Definition wedge_ht.C:72
SPRPatchType SPRNodalRecoveryMI_givePatchType() override
Definition wedge_ht.C:171
int testElementExtension(ElementExtension ext) override
Definition wedge_ht.h:76
double computeVolumeAround(GaussPoint *gp) override
Definition wedge_ht.C:92
MaterialMode giveMaterialMode() override
Definition wedge_ht.h:73
Interface * giveInterface(InterfaceType t) override
Definition wedge_ht.C:119
Wedge_mt(int n, Domain *d)
Definition wedge_ht.C:65
MaterialMode giveMaterialMode() override
Definition wedge_ht.h:116
const char * giveInputRecordName() const override
Definition wedge_ht.h:113
const char * giveClassName() const override
Definition wedge_ht.h:114
int computeNumberOfDofs() override
Definition wedge_ht.h:115
ZZNodalRecoveryModelInterface(Element *element)
Constructor.
@ Element_EdgeLoadSupport
Element extension for edge loads.
#define _IFT_Wedge_hmt_Name
Definition wedge_ht.h:45
#define _IFT_Wedge_mt_Name
Definition wedge_ht.h:46
#define _IFT_Wedge_ht_Name
Definition wedge_ht.h:44

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