Page MenuHomec4science

coupler_solid_cohesive_contact.cc
No OneTemporary

File Metadata

Created
Wed, May 1, 18:30

coupler_solid_cohesive_contact.cc

/**
* @file coupler_solid_cohesive_contact.cc
*
* @author Mohit Pundir <mohit.pundir@epfl.ch>
* @author Nicolas Richart <nicolas.richart@epfl.ch>
*
* @date creation: Mon Jan 21 2019
* @date last modification: Wed Jun 23 2021
*
* @brief class for coupling of solid mechanics cohesive and conatct mechanics
* model
*
*
* @section LICENSE
*
* Copyright (©) 2018-2021 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 "coupler_solid_cohesive_contact.hh"
/* -------------------------------------------------------------------------- */
namespace akantu {
template <>
CouplerSolidContactTemplate<SolidMechanicsModelCohesive>::
CouplerSolidContactTemplate(Mesh & mesh, Int dim, const ID & id,
std::shared_ptr<DOFManager> dof_manager)
: Model(mesh, ModelType::_coupler_solid_cohesive_contact, dim, id) {
this->initDOFManager(dof_manager);
this->mesh.registerDumper<DumperParaview>("coupler_solid_cohesive_contact",
id, true);
this->mesh.addDumpMeshToDumper("coupler_solid_cohesive_contact", mesh,
Model::spatial_dimension, _not_ghost,
_ek_cohesive);
this->registerDataAccessor(*this);
solid = std::make_unique<SolidMechanicsModelCohesive>(
mesh, Model::spatial_dimension, "solid_mechanics_model_cohesive",
this->dof_manager);
contact = std::make_unique<ContactMechanicsModel>(mesh.getMeshFacets(),
Model::spatial_dimension,
"contact_mechanics_model");
}
/* -------------------------------------------------------------------------- */
template <>
void CouplerSolidContactTemplate<SolidMechanicsModelCohesive>::initFullImpl(
const ModelOptions & options) {
Model::initFullImpl(options);
const auto & cscc_options =
aka::as_type<CouplerSolidCohesiveContactOptions>(options);
solid->initFull(_analysis_method = cscc_options.analysis_method,
_is_extrinsic = cscc_options.is_extrinsic);
contact->initFull(_analysis_method = cscc_options.analysis_method);
}
} // namespace akantu

Event Timeline