OOFEM
2.4
OOFEM.org - Object Oriented Finite Element Solver
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
q4axisymm.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 - 2013 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 q4axisymm_h
36
#define q4axisymm_h
37
38
#include "
Elements/structuralelement.h
"
39
#include "
Elements/structural2delement.h
"
40
#include "
zznodalrecoverymodel.h
"
41
43
44
#define _IFT_Q4Axisymm_Name "q4axisymm"
45
#define _IFT_Q4Axisymm_nipfish "nipfish"
46
47
48
namespace
oofem
{
49
class
FEI2dQuadQuadAxi;
50
56
class
Q4Axisymm
:
public
AxisymElement
,
public
ZZNodalRecoveryModelInterface
57
{
58
protected
:
59
static
FEI2dQuadQuadAxi
interp
;
60
int
numberOfFiAndShGaussPoints
;
61
62
public
:
63
Q4Axisymm
(
int
n,
Domain
* d);
64
virtual
~Q4Axisymm
();
65
66
virtual
FEInterpolation
*
giveInterpolation
()
const
;
67
68
// definition & identification
69
virtual
Interface
*
giveInterface
(
InterfaceType
);
70
virtual
const
char
*
giveInputRecordName
()
const
{
return
_IFT_Q4Axisymm_Name
; }
71
virtual
const
char
*
giveClassName
()
const
{
return
"Q4axisymm"
; }
72
virtual
IRResultType
initializeFrom
(
InputRecord
*ir);
73
74
protected
:
75
virtual
void
computeBmatrixAt
(
GaussPoint
*gp,
FloatMatrix
&answer,
int
lowerIndx = 1,
int
upperIndx =
ALL_STRAINS
) ;
76
77
78
#ifdef __OOFEG
79
virtual
void
drawRawGeometry
(
oofegGraphicContext
&
gc
,
TimeStep
*tStep);
80
virtual
void
drawDeformedGeometry
(
oofegGraphicContext
&gc,
TimeStep
*tStep,
UnknownType
type);
81
#endif
82
};
83
}
// end namespace oofem
84
#endif // q4axisymm_h
oofem::Q4Axisymm::giveInterface
virtual Interface * giveInterface(InterfaceType)
Interface requesting service.
Definition:
q4axisymm.C:141
oofem::Q4Axisymm::giveClassName
virtual const char * giveClassName() const
Definition:
q4axisymm.h:71
oofem::Q4Axisymm::drawDeformedGeometry
virtual void drawDeformedGeometry(oofegGraphicContext &gc, TimeStep *tStep, UnknownType type)
Definition:
q4axisymm.C:188
oofem::Domain
Class and object Domain.
Definition:
domain.h:115
oofem::Q4Axisymm::drawRawGeometry
virtual void drawRawGeometry(oofegGraphicContext &gc, TimeStep *tStep)
Definition:
q4axisymm.C:153
oofem::Q4Axisymm
This class implements an Quadratic isoparametric eight-node quadrilateral - elasticity finite element...
Definition:
q4axisymm.h:56
oofem::Q4Axisymm::computeBmatrixAt
virtual void computeBmatrixAt(GaussPoint *gp, FloatMatrix &answer, int lowerIndx=1, int upperIndx=ALL_STRAINS)
Computes the geometrical matrix of receiver in given integration point.
Definition:
q4axisymm.C:99
oofem::ZZNodalRecoveryModelInterface
The element interface required by ZZNodalRecoveryModel.
Definition:
zznodalrecoverymodel.h:99
gc
oofem::oofegGraphicContext gc[OOFEG_LAST_LAYER]
structural2delement.h
oofem::Q4Axisymm::giveInputRecordName
virtual const char * giveInputRecordName() const
Definition:
q4axisymm.h:70
oofem::FEInterpolation
Class representing a general abstraction for finite element interpolation class.
Definition:
feinterpol.h:132
zznodalrecoverymodel.h
structuralelement.h
oofem::Q4Axisymm::Q4Axisymm
Q4Axisymm(int n, Domain *d)
Definition:
q4axisymm.C:59
oofem::UnknownType
UnknownType
Type representing particular unknown (its physical meaning).
Definition:
unknowntype.h:55
oofem::AxisymElement
Definition:
structural2delement.h:136
ALL_STRAINS
#define ALL_STRAINS
Definition:
structuralelement.h:48
oofem::FloatMatrix
Implementation of matrix containing floating point numbers.
Definition:
floatmatrix.h:94
oofem::IRResultType
IRResultType
Type defining the return values of InputRecord reading operations.
Definition:
irresulttype.h:47
oofem::InputRecord
Class representing the general Input Record.
Definition:
inputrecord.h:101
oofem::Interface
Class Interface.
Definition:
interface.h:82
oofem::InterfaceType
InterfaceType
Enumerative type, used to identify interface type.
Definition:
interfacetype.h:43
oofem::Q4Axisymm::numberOfFiAndShGaussPoints
int numberOfFiAndShGaussPoints
Definition:
q4axisymm.h:60
oofem::FEI2dQuadQuadAxi
Class representing a 2d isoparametric quadratic interpolation based on natural coordinates for quadri...
Definition:
fei2dquadquad.h:100
oofem::oofegGraphicContext
Definition:
oofeggraphiccontext.h:126
oofem
the oofem namespace is to define a context or scope in which all oofem names are defined.
oofem::Q4Axisymm::interp
static FEI2dQuadQuadAxi interp
Definition:
q4axisymm.h:59
_IFT_Q4Axisymm_Name
#define _IFT_Q4Axisymm_Name
Definition:
q4axisymm.h:44
oofem::Q4Axisymm::initializeFrom
virtual IRResultType initializeFrom(InputRecord *ir)
Initializes receiver according to object description stored in input record.
Definition:
q4axisymm.C:81
oofem::GaussPoint
Class representing integration point in finite element program.
Definition:
gausspoint.h:93
oofem::Q4Axisymm::giveInterpolation
virtual FEInterpolation * giveInterpolation() const
Definition:
q4axisymm.C:73
oofem::TimeStep
Class representing solution step.
Definition:
timestep.h:80
oofem::Q4Axisymm::~Q4Axisymm
virtual ~Q4Axisymm()
Definition:
q4axisymm.C:68
This page is part of the
OOFEM
documentation. Copyright (c) 2011
Borek Patzak
Project e-mail:
info@oofem.org
Generated at Tue Jan 2 2018 20:07:30 for OOFEM by
doxygen
1.8.11 written by
Dimitri van Heesch
, © 1997-2011