Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90649685
non_local_manager_igfem.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
Sun, Nov 3, 14:07
Size
3 KB
Mime Type
text/x-c++
Expires
Tue, Nov 5, 14:07 (2 d)
Engine
blob
Format
Raw Data
Handle
22113391
Attached To
rAKA akantu
non_local_manager_igfem.hh
View Options
/**
* @file non_local_manager_igfem.hh
* @author Aurelia Isabel Cuba Ramos <aurelia.cubaramos@epfl.ch>
* @date Mon Sep 21 14:21:33 2015
*
* @brief Class that manages all the non-local neighborhoods for IGFEM
* simulations
*
*
* Copyright (©) 2010-2011 EPFL (Ecole Polytechnique Fédérale de Lausanne)
* Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
*
* Akantu is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option) any
* later version.
*
* Akantu is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Akantu. If not, see <http://www.gnu.org/licenses/>.
*
*/
/* -------------------------------------------------------------------------- */
#ifdef AKANTU_DAMAGE_NON_LOCAL
#ifndef AKANTU_NON_LOCAL_MANAGER_IGFEM_HH_
#define AKANTU_NON_LOCAL_MANAGER_IGFEM_HH_
/* -------------------------------------------------------------------------- */
#include "solid_mechanics_model_igfem.hh"
/* -------------------------------------------------------------------------- */
namespace
akantu
{
class
NonLocalManagerIGFEM
:
public
NonLocalManager
{
/* ------------------------------------------------------------------------ */
/* Constructors/Destructors */
/* ------------------------------------------------------------------------ */
public
:
NonLocalManagerIGFEM
(
SolidMechanicsModelIGFEM
&
model
,
const
ID
&
id
=
"non_local_manager_igfem"
);
virtual
~
NonLocalManagerIGFEM
();
/* --------------------------------------------------------------------------
*/
/* Methods */
/* --------------------------------------------------------------------------
*/
public
:
/// initialize the non-local manager: compute pair lists and weights for all
/// neighborhoods
virtual
void
init
();
/// average the internals and compute the non-local stresses
virtual
void
computeAllNonLocalStresses
();
/* --------------------------------------------------------------------------
*/
/* MeshEventHandler inherited members */
/* --------------------------------------------------------------------------
*/
virtual
void
onElementsRemoved
(
const
Array
<
Element
>
&
element_list
,
const
ElementTypeMapArray
<
UInt
>
&
new_numbering
,
const
RemovedElementsEvent
&
event
);
virtual
void
onElementsAdded
(
const
Array
<
Element
>
&
element_list
,
const
NewElementsEvent
&
event
);
private
:
/// cleanup unneccessary ghosts
virtual
void
cleanupExtraGhostElements
(
ElementTypeMap
<
UInt
>
&
nb_ghost_protected
);
/* ------------------------------------------------------------------------ */
/* Accessors */
/* ------------------------------------------------------------------------ */
public
:
/* ------------------------------------------------------------------------ */
/* Class Members */
/* ------------------------------------------------------------------------ */
private
:
};
}
// namespace akantu
/* -------------------------------------------------------------------------- */
/* inline functions */
/* -------------------------------------------------------------------------- */
#endif
/* AKANTU_NON_LOCAL_MANAGER_IGFEM_HH_ */
#endif
/* AKANTU_DAMAGE_NON_LOCAL */
Event Timeline
Log In to Comment