Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98221333
igfem_enrichment.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, Jan 11, 04:52
Size
3 KB
Mime Type
text/x-c++
Expires
Mon, Jan 13, 04:52 (2 d)
Engine
blob
Format
Raw Data
Handle
23522237
Attached To
rAKA akantu
igfem_enrichment.hh
View Options
/**
* @file igfem_enrichment.hh
*
* @author Aurelia Isabel Cuba Ramos <aurelia.cubaramos@epfl.ch>
*
*
* @brief IGFEM enrichment: handles geometries of interfaces and advancement with time
*
* @section LICENSE
*
* 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_ENRICHMENT_HH__
#define __AKANTU_IGFEM_ENRICHMENT_HH__
#include "mesh_sphere_intersector.hh"
#include "mesh_igfem_spherical_growing_gel.hh"
/* -------------------------------------------------------------------------- */
__BEGIN_AKANTU__
class
IGFEMEnrichment
{
/* ------------------------------------------------------------------------ */
/* Constructors/Destructors */
/* ------------------------------------------------------------------------ */
public
:
IGFEMEnrichment
(
Mesh
&
mesh
);
virtual
~
IGFEMEnrichment
()
{};
private
:
typedef
std
::
list
<
Spherical
::
Sphere_3
>
Geometry
;
typedef
std
::
map
<
std
::
string
,
Geometry
*>
GeometryMap
;
/* ------------------------------------------------------------------------ */
/* Methods */
/* ------------------------------------------------------------------------ */
public
:
/// create the mesh primitives
void
initialize
();
/// get a geometry from the geometry map
virtual
Geometry
&
getGeometry
(
ID
&
domain
)
const
;
/// detect the interface
virtual
void
update
(
ID
domain
=
""
);
/// remove geometry
virtual
void
unRegisterGeometryObject
(
const
ID
&
domain
=
""
);
/// insert new geometry
virtual
void
registerGeometryObject
(
Geometry
&
geometry
,
const
ID
&
domain
=
""
);
/// check if a point is in a given domain
inline
bool
isInside
(
const
Vector
<
Real
>
&
point
,
ID
domain
=
""
)
const
;
/// move the interface, in this case grow the gel pockets
virtual
void
moveInterface
(
Real
new_position
,
ID
domain
=
""
);
/* -------------------------------------------------------------------------- */
/* Accessors */
/* -------------------------------------------------------------------------- */
public
:
UInt
getNbStandardNodes
()
{
return
this
->
intersector_sphere
.
getNbStandardNodes
();
}
UInt
getNbEnrichedNodes
()
{
return
this
->
intersector_sphere
.
getNbEnrichedNodes
();
}
/* ------------------------------------------------------------------------ */
/* Class Members */
/* ------------------------------------------------------------------------ */
protected
:
MeshIgfemSphericalGrowingGel
<
2
>
intersector_sphere
;
GeometryMap
geometries
;
/// default geometry object
std
::
string
default_geometry
;
};
/* -------------------------------------------------------------------------- */
/* inline functions */
/* -------------------------------------------------------------------------- */
#include "igfem_enrichment_inline_impl.cc"
__END_AKANTU__
/* -------------------------------------------------------------------------- */
#endif
/* __AKANTU_IGFEM_ENRICHMENT_HH__ */
Event Timeline
Log In to Comment