Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92361890
material_orthotropic_damage_iterative.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
Tue, Nov 19, 17:04
Size
4 KB
Mime Type
text/x-c++
Expires
Thu, Nov 21, 17:04 (1 d, 21 h)
Engine
blob
Format
Raw Data
Handle
22333602
Attached To
rAKA akantu
material_orthotropic_damage_iterative.hh
View Options
/**
* @file material_orthtropic_damage_iterative.hh
*
* @author Aurelia Isabel Cuba Ramos <aurelia.cubaramos@epfl.ch>
*
* @date Sun Mar 8 12:54:30 2015
*
* @brief Specialization of the class material orthotropic damage to
* damage only one gauss point at a time and propagate damage in a
* linear way. Max principal stress criterion is used as a failure
* criterion.
*
* @section LICENSE
*
* Copyright (©) 2010-2012, 2014 EPFL (Ecole Polytechnique Fédérale de Lausanne)
* Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
*
*/
/* -------------------------------------------------------------------------- */
#include "aka_common.hh"
#include "material_orthotropic_damage.hh"
#include "material.hh"
/* -------------------------------------------------------------------------- */
#ifndef __AKANTU_MATERIAL_ORTHOTROPIC_DAMAGE_ITERATIVE_HH__
#define __AKANTU_MATERIAL_ORTHOTROPIC_DAMAGE_ITERATIVE_HH__
__BEGIN_AKANTU__
/**
* Material damage iterative
*
* parameters in the material files :
* - Sc
*/
template
<
UInt
spatial_dimension
>
class
MaterialOrthotropicDamageIterative
:
public
MaterialOrthotropicDamage
<
spatial_dimension
>
{
/* ------------------------------------------------------------------------ */
/* Constructors/Destructors */
/* ------------------------------------------------------------------------ */
public
:
MaterialOrthotropicDamageIterative
(
SolidMechanicsModel
&
model
,
const
ID
&
id
=
""
);
virtual
~
MaterialOrthotropicDamageIterative
()
{};
/* ------------------------------------------------------------------------ */
/* Methods */
/* ------------------------------------------------------------------------ */
public
:
/// virtual void updateInternalParameters();
virtual
void
computeAllStresses
(
GhostType
ghost_type
=
_not_ghost
);
/// update internal field damage
UInt
updateDamage
();
/// update energies after damage has been updated
virtual
void
updateEnergiesAfterDamage
(
ElementType
el_type
,
GhostType
ghost_typ
);
virtual
void
onBeginningSolveStep
(
const
AnalysisMethod
&
method
)
{
};
virtual
void
onEndSolveStep
(
const
AnalysisMethod
&
method
)
{
};
protected
:
/// constitutive law for all element of a type
virtual
void
computeStress
(
ElementType
el_type
,
GhostType
ghost_type
=
_not_ghost
);
///compute the equivalent stress on each Gauss point (i.e. the max prinicpal stress) and normalize it by the tensile strength
void
computeNormalizedEquivalentStress
(
ElementType
el_type
,
GhostType
ghost_type
=
_not_ghost
);
/// find max normalized equivalent stress
void
findMaxNormalizedEquivalentStress
(
ElementType
el_type
,
GhostType
ghost_type
=
_not_ghost
);
inline
void
computeDamageAndStressOnQuad
(
Matrix
<
Real
>
&
sigma
,
Matrix
<
Real
>
&
one_minus_D
,
Matrix
<
Real
>
&
root_one_minus_D
,
Matrix
<
Real
>
&
damage
,
Matrix
<
Real
>
&
first_term
,
Matrix
<
Real
>
&
third_term
);
/* ------------------------------------------------------------------------ */
/* DataAccessor inherited members */
/* ------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------ */
/* Accessors */
/* ------------------------------------------------------------------------ */
public
:
/// get max normalized equivalent stress
AKANTU_GET_MACRO
(
NormMaxEquivalentStress
,
norm_max_equivalent_stress
,
Real
);
/* ------------------------------------------------------------------------ */
/* Class Members */
/* ------------------------------------------------------------------------ */
protected
:
/// resistance to damage
RandomInternalField
<
Real
>
Sc
;
/// internal field to store equivalent stress on each Gauss point
InternalField
<
Real
>
equivalent_stress
;
/// internal field to store the direction of the current damage frame
InternalField
<
Real
>
stress_dir
;
/// damage increment
Real
prescribed_dam
;
/// maximum equivalent stress
Real
norm_max_equivalent_stress
;
/// define damage threshold at which damage will be set to 1
Real
dam_threshold
;
/// quadrature point with highest equivalent Stress
QuadraturePoint
q_max
;
};
/* -------------------------------------------------------------------------- */
/* inline functions */
/* -------------------------------------------------------------------------- */
#include "material_orthotropic_damage_iterative_inline_impl.cc"
__END_AKANTU__
#endif
/* __AKANTU_MATERIAL_ORTHOTROPIC_DAMAGE_ITERATIVE_HH__ */
Event Timeline
Log In to Comment