Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90557291
igfem_helper.hh
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sat, Nov 2, 18:01
Size
6 KB
Mime Type
text/x-c++
Expires
Mon, Nov 4, 18:01 (2 d)
Engine
blob
Format
Raw Data
Handle
22082327
Attached To
rAKA akantu
igfem_helper.hh
View Options
/**
* @file dumper_igfem_element_iterator.hh
*
* @author Aurelia Isabel Cuba Ramos <aurelia.cubaramos@epfl.ch>
*
*
* @brief Helper class to return sub element information
*
*
* Copyright (©) 2010-2012, 2014 EPFL (Ecole Polytechnique Fédérale de Lausanne)
* Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
*
*/
#ifndef AKANTU_IGFEM_HELPER_HH_
#define AKANTU_IGFEM_HELPER_HH_
/* -------------------------------------------------------------------------- */
#include "element_class.hh"
/* -------------------------------------------------------------------------- */
namespace
akantu
{
class
FEEngine
;
template
<
ElementType
type
>
struct
ElementTypeIGFEMData
{
static
ElementType
igfem_element_types
[];
static
UInt
nb_igfem_types
;
};
struct
IGFEMHelper
{
template
<
ElementType
type
>
static
VectorProxy
<
ElementType
>
getIGFEMElementTypes
()
{
return
VectorProxy
<
ElementType
>
(
ElementTypeIGFEMData
<
type
>::
igfem_element_types
,
ElementTypeIGFEMData
<
type
>::
nb_igfem_types
);
}
/// get the number of nodes for a given sub-element
static
UInt
getNbNodesPerSubElement
(
ElementType
type
,
const
UInt
sub_element
)
{
UInt
nb_nodes_per_sub_element
=
0
;
#define GET_NB_NODES_PER_SUB_ELEMENT(type) \
switch (sub_element) { \
case 0: \
nb_nodes_per_sub_element = \
ElementClass<ElementClassProperty<type>::sub_element_type_1>:: \
getNbNodesPerInterpolationElement(); \
break; \
case 1: \
nb_nodes_per_sub_element = \
ElementClass<ElementClassProperty<type>::sub_element_type_2>:: \
getNbNodesPerInterpolationElement(); \
break; \
}
AKANTU_BOOST_IGFEM_ELEMENT_SWITCH
(
GET_NB_NODES_PER_SUB_ELEMENT
);
#undef GET_NB_NODES_PER_SUB_ELEMENT
return
nb_nodes_per_sub_element
;
}
/// get the connectivity for a given sub-element
static
UInt
*
getSubElementConnectivity
(
ElementType
type
,
const
UInt
sub_element
)
{
UInt
*
sub_element_connectivity
=
NULL
;
#define GET_SUB_ELEMENT_CONNECTIVITY(type) \
sub_element_connectivity = \
ElementClass<type>::getSubElementConnectivity(sub_element);
AKANTU_BOOST_IGFEM_ELEMENT_SWITCH
(
GET_SUB_ELEMENT_CONNECTIVITY
);
#undef GET_SUB_ELEMENT_CONNECTIVITY
return
sub_element_connectivity
;
}
/// get the sub-element type
static
ElementType
getSubElementType
(
ElementType
type
,
const
UInt
sub_element
)
{
ElementType
sub_type
=
_not_defined
;
#define GET_SUB_ELEMENT_TYPE(type) \
switch (sub_element) { \
case 0: \
sub_type = ElementClassProperty<type>::sub_element_type_1; \
break; \
case 1: \
sub_type = ElementClassProperty<type>::sub_element_type_2; \
break; \
}
AKANTU_BOOST_IGFEM_ELEMENT_SWITCH
(
GET_SUB_ELEMENT_TYPE
);
#undef GET_SUB_ELEMENT_TYPE
return
sub_type
;
}
/// get the nb of quads for one sub element type
static
UInt
getNbQuadraturePoints
(
ElementType
type
,
const
UInt
sub_element
)
{
UInt
nb_quad_points
=
0
;
#define GET_NB_QUADS(type) \
switch (sub_element) { \
case 0: \
nb_quad_points = GaussIntegrationElement<ElementClassProperty< \
type>::sub_element_type_1>::getNbQuadraturePoints(); \
break; \
case 1: \
nb_quad_points = GaussIntegrationElement<ElementClassProperty< \
type>::sub_element_type_2>::getNbQuadraturePoints(); \
break; \
}
AKANTU_BOOST_IGFEM_ELEMENT_SWITCH
(
GET_NB_QUADS
);
#undef GET_NB_QUADS
return
nb_quad_points
;
}
/// get the nb of parent nodes of a given igfem element type
static
UInt
getNbParentNodes
(
ElementType
type
)
{
UInt
nb_parent_nodes
=
0
;
#define GET_NB_PARENT_NODES(type) \
nb_parent_nodes = \
ElementClass<ElementClassProperty<type>::parent_element_type>:: \
getNbNodesPerInterpolationElement();
AKANTU_BOOST_IGFEM_ELEMENT_SWITCH
(
GET_NB_PARENT_NODES
);
#undef GET_NB_PARENT_NODES
return
nb_parent_nodes
;
}
/// get the nb of parent nodes of a given igfem element type
static
UInt
getNbEnrichedNodes
(
ElementType
type
)
{
UInt
nb_enriched_nodes
=
0
;
#define GET_NB_ENRICHED_NODES(type) \
nb_enriched_nodes = ElementClass<type>::getNbEnrichments();
AKANTU_BOOST_IGFEM_ELEMENT_SWITCH
(
GET_NB_ENRICHED_NODES
);
#undef GET_NB_ENRICHED_NODES
return
nb_enriched_nodes
;
}
/// get the nb of quads for one sub element type
static
UInt
getElementOrientation
(
ElementType
type
,
const
Vector
<
bool
>
&
is_inside
)
{
UInt
orientation
=
0
;
#define GET_ORIENTATION(type) \
orientation = ElementClass<type>::getOrientation(is_inside);
AKANTU_BOOST_IGFEM_ELEMENT_SWITCH
(
GET_ORIENTATION
);
#undef GET_ORIENTATION
return
orientation
;
}
};
}
// namespace akantu
#endif
/* AKANTU_IGFEM_HELPER_HH_ */
Event Timeline
Log In to Comment