OOFEM  2.4
OOFEM.org - Object Oriented Finite Element Solver
fei2dquadlin.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 fei2dquadlin_h
36 #define fei2dquadlin_h
37 
38 #include "feinterpol2d.h"
39 
40 namespace oofem {
45 class OOFEM_EXPORT FEI2dQuadLin : public FEInterpolation2d
46 {
47 public:
48  FEI2dQuadLin(int ind1, int ind2) : FEInterpolation2d(1, ind1, ind2) { }
49 
50  virtual integrationDomain giveIntegrationDomain() const { return _Square; }
51  virtual Element_Geometry_Type giveGeometryType() const { return EGT_quad_1; }
52  virtual integrationDomain giveBoundaryIntegrationDomain(int ib) const { return _Line; }
53  virtual integrationDomain giveBoundarySurfaceIntegrationDomain(int isurf) const { return _Square; }
54  virtual integrationDomain giveBoundaryEdgeIntegrationDomain(int iedge) const { return _Line; }
55 
56  virtual double giveArea(const FEICellGeometry &cellgeo) const;
57 
58  // Bulk
59  virtual void evalN(FloatArray &answer, const FloatArray &lcoords, const FEICellGeometry &cellgeo);
60  virtual double evaldNdx(FloatMatrix &answer, const FloatArray &lcoords, const FEICellGeometry &cellgeo);
61  virtual void local2global(FloatArray &answer, const FloatArray &lcoords, const FEICellGeometry &cellgeo);
62  virtual int global2local(FloatArray &answer, const FloatArray &lcoords, const FEICellGeometry &cellgeo);
63  virtual int giveNumberOfNodes() const { return 4; }
64 
65  virtual bool inside(const FloatArray &lcoords) const;
66 
67  // Edge
68  virtual void computeLocalEdgeMapping(IntArray &edgeNodes, int iedge);
69  virtual int giveNumberOfEdges() const { return 4; }
70  virtual void edgeEvalN(FloatArray &answer, int iedge, const FloatArray &lcoords, const FEICellGeometry &cellgeo);
71  virtual double edgeEvalNormal(FloatArray &answer, int iedge, const FloatArray &lcoords, const FEICellGeometry &cellgeo);
72  virtual void edgeEvaldNds(FloatArray &answer, int iedge,
73  const FloatArray &lcoords, const FEICellGeometry &cellgeo);
74  virtual void edgeLocal2global(FloatArray &answer, int iedge,
75  const FloatArray &lcoords, const FEICellGeometry &cellgeo);
76  virtual double evalNXIntegral(int iEdge, const FEICellGeometry &cellgeo);
77 
78  virtual IntegrationRule *giveIntegrationRule(int order);
79 
80 
81  virtual void evaldNdxi(FloatMatrix &answer, const FloatArray &lcoords, const FEICellGeometry &cellgeo);
82 
83 protected:
84  double edgeComputeLength(IntArray &edgeNodes, const FEICellGeometry &cellgeo);
85 };
86 
91 class OOFEM_EXPORT FEI2dQuadLinAxi : public FEI2dQuadLin
92 {
93 public:
94  FEI2dQuadLinAxi(int ind1, int ind2) : FEI2dQuadLin(ind1, ind2) { }
95 
96  virtual double giveTransformationJacobian(const FloatArray &lcoords, const FEICellGeometry &cellgeo);
97  virtual double boundaryEdgeGiveTransformationJacobian(int boundary, const FloatArray &lcoords, const FEICellGeometry &cellgeo);
98  virtual double boundaryGiveTransformationJacobian(int boundary, const FloatArray &lcoords, const FEICellGeometry &cellgeo);
99  virtual double edgeGiveTransformationJacobian(int iedge, const FloatArray &lcoords,
100  const FEICellGeometry &cellgeo);
101 
102 };
103 
104 
105 
106 } // end namespace oofem
107 #endif // fei2dquadlin_h
integrationDomain
Used by integrator class to supply integration points for proper domain to be integrated (Area...
virtual integrationDomain giveBoundaryEdgeIntegrationDomain(int iedge) const
Returns boundary integration domain.
Definition: fei2dquadlin.h:54
Element_Geometry_Type
Enumerative type used to classify element geometry Possible values are: EGT_point - point in space EG...
virtual int giveNumberOfEdges() const
Returns number of edges.
Definition: fei2dquadlin.h:69
Class representing a general abstraction for surface finite element interpolation class...
Definition: feinterpol2d.h:45
Class representing a general abstraction for cell geometry.
Definition: feinterpol.h:62
Class representing a 2d isoparametric linear interpolation based on natural coordinates for quadrilat...
Definition: fei2dquadlin.h:91
Class implementing an array of integers.
Definition: intarray.h:61
FEI2dQuadLin(int ind1, int ind2)
Definition: fei2dquadlin.h:48
virtual Element_Geometry_Type giveGeometryType() const
Returns the geometry type fo the interpolator.
Definition: fei2dquadlin.h:51
Abstract base class representing integration rule.
FEI2dQuadLinAxi(int ind1, int ind2)
Definition: fei2dquadlin.h:94
Class representing vector of real numbers.
Definition: floatarray.h:82
Implementation of matrix containing floating point numbers.
Definition: floatmatrix.h:94
virtual int giveNumberOfNodes() const
Returns the number of geometric nodes of the receiver.
Definition: fei2dquadlin.h:63
virtual integrationDomain giveBoundarySurfaceIntegrationDomain(int isurf) const
Returns boundary integration domain.
Definition: fei2dquadlin.h:53
virtual integrationDomain giveIntegrationDomain() const
Returns the integration domain of the interpolator.
Definition: fei2dquadlin.h:50
Class representing a 2d isoparametric linear interpolation based on natural coordinates for quadrilat...
Definition: fei2dquadlin.h:45
the oofem namespace is to define a context or scope in which all oofem names are defined.
virtual integrationDomain giveBoundaryIntegrationDomain(int ib) const
Returns boundary integration domain.
Definition: fei2dquadlin.h:52

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:28 for OOFEM by doxygen 1.8.11 written by Dimitri van Heesch, © 1997-2011