Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91783290
material_vreepeerlings_non_local.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
Thu, Nov 14, 10:35
Size
4 KB
Mime Type
text/x-c++
Expires
Sat, Nov 16, 10:35 (1 d, 22 h)
Engine
blob
Format
Raw Data
Handle
22318286
Attached To
rAKA akantu
material_vreepeerlings_non_local.hh
View Options
/**
* @file material_vreepeerlings_non_local.hh
*
* @author Nicolas Richart <nicolas.richart@epfl.ch>
* @author Cyprien Wolff <cyprien.wolff@epfl.ch>
*
* @date Tue Feb 28 18:18:29 2012
*
* @brief MaterialVreePeerlings header for non-local damage
*
* @section LICENSE
*
* 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/>.
*
*/
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
#include "aka_common.hh"
#include "material_vreepeerlings.hh"
#include "material_damage_non_local.hh"
/* -------------------------------------------------------------------------- */
#ifndef __AKANTU_MATERIAL_VREEPEERLINGS_NON_LOCAL_HH__
#define __AKANTU_MATERIAL_VREEPEERLINGS_NON_LOCAL_HH__
__BEGIN_AKANTU__
/**
* Material VreePeerlings Non local
*
* parameters in the material files :
*/
template
<
UInt
spatial_dimension
,
template
<
UInt
>
class
WeightFunction
=
BaseWeightFunction
,
template
<
UInt
>
class
MatParent
=
MaterialElastic
>
class
MaterialVreePeerlingsNonLocal
:
public
MaterialDamageNonLocal
<
spatial_dimension
,
MaterialVreePeerlings
<
spatial_dimension
,
MatParent
>
,
WeightFunction
>
{
/* ------------------------------------------------------------------------ */
/* Constructors/Destructors */
/* ------------------------------------------------------------------------ */
public
:
typedef
MaterialVreePeerlings
<
spatial_dimension
,
MatParent
>
Parent
;
typedef
MaterialDamageNonLocal
<
spatial_dimension
,
Parent
,
WeightFunction
>
MaterialVreePeerlingsNonLocalParent
;
MaterialVreePeerlingsNonLocal
(
SolidMechanicsModel
&
model
,
const
ID
&
id
=
""
);
virtual
~
MaterialVreePeerlingsNonLocal
()
{};
/* ------------------------------------------------------------------------ */
/* Methods */
/* ------------------------------------------------------------------------ */
public
:
void
initMaterial
();
/// constitutive law for all element of a type
//void computeStress(ElementType el_type, GhostType ghost_type = _not_ghost);
/// constitutive law
virtual
void
computeNonLocalStress
(
ElementType
el_type
,
GhostType
ghost_type
=
_not_ghost
);
/* ------------------------------------------------------------------------ */
/* Accessors */
/* ------------------------------------------------------------------------ */
public
:
/* ------------------------------------------------------------------------ */
/* Class Members */
/* ------------------------------------------------------------------------ */
private
:
/// non local version of equivalent strain
InternalField
<
Real
>
equi_strain_non_local
;
/// non local version of equivalent strain rate
InternalField
<
Real
>
equi_strain_rate_non_local
;
};
/* -------------------------------------------------------------------------- */
/* inline functions */
/* -------------------------------------------------------------------------- */
#include "material_vreepeerlings_non_local_inline_impl.cc"
__END_AKANTU__
#endif
/* __AKANTU_MATERIAL_VREEPEERLINGS_NON_LOCAL_HH__ */
Event Timeline
Log In to Comment