Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90491539
material_igfem_saw_tooth_damage.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, 03:51
Size
5 KB
Mime Type
text/x-c++
Expires
Mon, Nov 4, 03:51 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22085773
Attached To
rAKA akantu
material_igfem_saw_tooth_damage.hh
View Options
/**
* @file material_igfem_saw_tooth_damage.hh
*
* @author Aurelia Isabel Cuba Ramos <aurelia.cubaramos@epfl.ch>
*
*
* @brief Linear saw-tooth softening material model for IGFEM elements
*
* @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 "material_damage.hh"
#include "material_igfem_elastic.hh"
/* -------------------------------------------------------------------------- */
#ifndef __AKANTU_MATERIAL_IGFEM_SAW_TOOTH_DAMAGE_HH__
#define __AKANTU_MATERIAL_IGFEM_SAW_TOOTH_DAMAGE_HH__
__BEGIN_AKANTU__
template<UInt spatial_dimension>
class MaterialIGFEMSawToothDamage : public MaterialDamage<spatial_dimension, MaterialIGFEMElastic> {
/* ------------------------------------------------------------------------ */
/* Constructors/Destructors */
/* ------------------------------------------------------------------------ */
private:
typedef MaterialDamage<spatial_dimension, MaterialIGFEMElastic> Parent;
public:
typedef std::pair<Element, Element> ElementPair;
MaterialIGFEMSawToothDamage(SolidMechanicsModel & model, const ID & id = "");
MaterialIGFEMSawToothDamage(SolidMechanicsModel & model,
UInt dim,
const Mesh & mesh,
FEEngine & fe_engine,
const ID & id = "");
virtual ~MaterialIGFEMSawToothDamage() {}
protected:
void initialize();
/* ------------------------------------------------------------------------ */
/* Methods */
/* ------------------------------------------------------------------------ */
public:
virtual void initMaterial();
/// virtual void updateInternalParameters();
virtual void computeAllStresses(GhostType ghost_type = _not_ghost);
/// update internal field damage
UInt updateDamage();
UInt updateDamage(UInt quad_index, const Real eq_stress, const ElementType & el_type, const GhostType & ghost_type);
/// 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(const Array<Real> & grad_u,
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,
Real & dam);
protected:
virtual void transferInternals(Material & old_mat, std::vector<ElementPair> & element_pairs);
/* ------------------------------------------------------------------------ */
/* MeshEventHandler inherited members */
/* ------------------------------------------------------------------------ */
public:
/* ------------------------------------------------------------------------ */
virtual void onElementsAdded(const Array<Element> & element_list,
const NewElementsEvent & event);
/* ------------------------------------------------------------------------ */
/* Accessors */
/* ------------------------------------------------------------------------ */
public:
/* ------------------------------------------------------------------------ */
/* Class Members */
/* ------------------------------------------------------------------------ */
protected:
/// resistance to damage
IGFEMInternalField<Real> Sc;
/// internal field to store equivalent stress on each Gauss point
IGFEMInternalField<Real> equivalent_stress;
/// damage increment
Real prescribed_dam;
/// maximum equivalent stress
Real norm_max_equivalent_stress;
/// deviation from max stress at which Gauss point will still get damaged
Real dam_tolerance;
/// define damage threshold at which damage will be set to 1
Real dam_threshold;
/// maximum damage value
Real max_damage;
};
/* -------------------------------------------------------------------------- */
/* inline functions */
/* -------------------------------------------------------------------------- */
#include "material_igfem_saw_tooth_damage_inline_impl.cc"
__END_AKANTU__
#endif /* __AKANTU_MATERIAL_IGFEM_SAW_TOOTH_DAMAGE_HH__ */
Event Timeline
Log In to Comment