Page MenuHomec4science

material_linear_elastic_generic2.cc
No OneTemporary

File Metadata

Created
Thu, May 9, 08:07

material_linear_elastic_generic2.cc

/**
* @file material_linear_elastic_generic2.cc
*
* @author Till Junge <till.junge@epfl.ch>
*
* @date 20 Dec 2018
*
* @brief Implementation for generic linear elastic law with eigenstrains
*
* 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.
*/
#include "material_linear_elastic_generic2.hh"
namespace muSpectre {
/* ---------------------------------------------------------------------- */
template <Dim_t DimS, Dim_t DimM>
MaterialLinearElasticGeneric2<DimS, DimM>::MaterialLinearElasticGeneric2(
const std::string & name, const CInput_t & C_voigt)
: Parent{name}, worker{name, C_voigt},
eigen_field{make_field<Field_t>("Eigenstrain", this->internal_fields)},
internal_variables(eigen_field.get_const_map()) {}
/* ---------------------------------------------------------------------- */
template <Dim_t DimS, Dim_t DimM>
void MaterialLinearElasticGeneric2<DimS, DimM>::add_pixel(
const Ccoord_t<DimS> & /*pixel*/) {
throw std::runtime_error("this material needs pixels with and eigenstrain");
}
/* ---------------------------------------------------------------------- */
template <Dim_t DimS, Dim_t DimM>
void MaterialLinearElasticGeneric2<DimS, DimM>::add_pixel(
const Ccoord_t<DimS> & pixel, const StrainTensor & E_eig) {
this->internal_fields.add_pixel(pixel);
Eigen::Map<const Eigen::Array<Real, DimM * DimM, 1>> strain_array(
E_eig.data());
this->eigen_field.push_back(strain_array);
}
template class MaterialLinearElasticGeneric2<twoD, twoD>;
template class MaterialLinearElasticGeneric2<twoD, threeD>;
template class MaterialLinearElasticGeneric2<threeD, threeD>;
} // namespace muSpectre

Event Timeline