Page MenuHomec4science

material_linear_elastic3.hh
No OneTemporary

File Metadata

Created
Tue, May 7, 02:50

material_linear_elastic3.hh

/**
* @file material_linear_elastic3.hh
*
* @author Richard Leute <richard.leute@imtek.uni-freiburg.de>
*
* @date 20 Feb 2018
*
* @brief linear elastic material with distribution of stiffness properties.
* Uses the MaterialMuSpectre facilities to keep it simple.
*
* Copyright © 2018 Till Junge
*
* µSpectre 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, or (at
* your option) any later version.
*
* µSpectre 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
* General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with µSpectre; see the file COPYING. If not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* * Boston, MA 02111-1307, USA.
*
* Additional permission under GNU GPL version 3 section 7
*
* If you modify this Program, or any covered work, by linking or combining it
* with proprietary FFT implementations or numerical libraries, containing parts
* covered by the terms of those libraries' licenses, the licensors of this
* Program grant you additional permission to convey the resulting work.
*/
#ifndef SRC_MATERIALS_MATERIAL_LINEAR_ELASTIC3_HH_
#define SRC_MATERIALS_MATERIAL_LINEAR_ELASTIC3_HH_
#include "materials/material_linear_elastic1.hh"
#include "common/field.hh"
#include "common/tensor_algebra.hh"
#include <Eigen/Dense>
namespace muSpectre {
template <Dim_t DimS, Dim_t DimM> class MaterialLinearElastic3;
/**
* traits for objective linear elasticity with eigenstrain
*/
template <Dim_t DimS, Dim_t DimM>
struct MaterialMuSpectre_traits<MaterialLinearElastic3<DimS, DimM>> {
//! global field collection
using GFieldCollection_t =
typename MaterialBase<DimS, DimM>::GFieldCollection_t;
//! expected map type for strain fields
using StrainMap_t =
MatrixFieldMap<GFieldCollection_t, Real, DimM, DimM, true>;
//! expected map type for stress fields
using StressMap_t = MatrixFieldMap<GFieldCollection_t, Real, DimM, DimM>;
//! expected map type for tangent stiffness fields
using TangentMap_t = T4MatrixFieldMap<GFieldCollection_t, Real, DimM>;
//! declare what type of strain measure your law takes as input
constexpr static auto strain_measure{StrainMeasure::GreenLagrange};
//! declare what type of stress measure your law yields as output
constexpr static auto stress_measure{StressMeasure::PK2};
//! local field_collections used for internals
using LFieldColl_t = LocalFieldCollection<DimS>;
//! local stiffness tensor type
using LStiffnessMap_t = T4MatrixFieldMap<LFieldColl_t, Real, DimM, true>;
//! elasticity without internal variables
using InternalVariables = std::tuple<LStiffnessMap_t>;
};
/**
* implements objective linear elasticity with an eigenstrain per pixel
*/
template <Dim_t DimS, Dim_t DimM>
class MaterialLinearElastic3
: public MaterialMuSpectre<MaterialLinearElastic3<DimS, DimM>, DimS,
DimM> {
public:
//! base class
using Parent = MaterialMuSpectre<MaterialLinearElastic3, DimS, DimM>;
/**
* type used to determine whether the
* `muSpectre::MaterialMuSpectre::iterable_proxy` evaluate only
* stresses or also tangent stiffnesses
*/
using NeedTangent = typename Parent::NeedTangent;
//! global field collection
using Stiffness_t =
Eigen::TensorFixedSize<Real, Eigen::Sizes<DimM, DimM, DimM, DimM>>;
//! traits of this material
using traits = MaterialMuSpectre_traits<MaterialLinearElastic3>;
//! Type of container used for storing eigenstrain
using InternalVariables = typename traits::InternalVariables;
//! Hooke's law implementation
using Hooke =
typename MatTB::Hooke<DimM, typename traits::StrainMap_t::reference,
typename traits::TangentMap_t::reference>;
//! Default constructor
MaterialLinearElastic3() = delete;
//! Construct by name
explicit MaterialLinearElastic3(std::string name);
//! Copy constructor
MaterialLinearElastic3(const MaterialLinearElastic3 &other) = delete;
//! Move constructor
MaterialLinearElastic3(MaterialLinearElastic3 &&other) = delete;
//! Destructor
virtual ~MaterialLinearElastic3() = default;
//! Copy assignment operator
MaterialLinearElastic3 &
operator=(const MaterialLinearElastic3 &other) = delete;
//! Move assignment operator
MaterialLinearElastic3 &operator=(MaterialLinearElastic3 &&other) = delete;
/**
* evaluates second Piola-Kirchhoff stress given the Green-Lagrange
* strain (or Cauchy stress if called with a small strain tensor)
* and the local stiffness tensor.
*/
template <class s_t, class stiffness_t>
inline decltype(auto) evaluate_stress(s_t &&E, stiffness_t &&C);
/**
* evaluates both second Piola-Kirchhoff stress and stiffness given
* the Green-Lagrange strain (or Cauchy stress and stiffness if
* called with a small strain tensor) and the local stiffness tensor.
*/
template <class s_t, class stiffness_t>
inline decltype(auto) evaluate_stress_tangent(s_t &&E, stiffness_t &&C);
/**
* return the empty internals tuple
*/
InternalVariables &get_internals() { return this->internal_variables; }
/**
* overload add_pixel to write into loacal stiffness tensor
*/
void add_pixel(const Ccoord_t<DimS> &pixel) final;
/**
* overload add_pixel to write into local stiffness tensor
*/
void add_pixel(const Ccoord_t<DimS> &pixel, const Real &Young,
const Real &PoissonRatio);
protected:
//! storage for stiffness tensor
using Field_t =
TensorField<LocalFieldCollection<DimS>, Real, fourthOrder, DimM>;
Field_t &C_field; //!< field of stiffness tensors
//! tuple for iterable eigen_field
InternalVariables internal_variables;
private:
};
/* ---------------------------------------------------------------------- */
template <Dim_t DimS, Dim_t DimM>
template <class s_t, class stiffness_t>
auto MaterialLinearElastic3<DimS, DimM>::evaluate_stress(s_t &&E,
stiffness_t &&C)
-> decltype(auto) {
return Matrices::tensmult(C, E);
}
/* ---------------------------------------------------------------------- */
template <Dim_t DimS, Dim_t DimM>
template <class s_t, class stiffness_t>
auto MaterialLinearElastic3<DimS, DimM>::evaluate_stress_tangent(
s_t &&E, stiffness_t &&C) -> decltype(auto) {
return std::make_tuple(evaluate_stress(E, C), C);
}
} // namespace muSpectre
#endif // SRC_MATERIALS_MATERIAL_LINEAR_ELASTIC3_HH_

Event Timeline