Page MenuHomec4science

resolution_penalty_quadratic.hh
No OneTemporary

File Metadata

Created
Sun, Apr 28, 06:40

resolution_penalty_quadratic.hh

/**
* @file resolution_penalty_quadratic.hh
*
* @author Mohit Pundir <mohit.pundir@epfl.ch>
*
* @date creation: Fri Jun 18 2010
* @date last modification: Mon Aug 10 2020
*
* @brief Quadratic Penalty Resolution for Contact Mechanics Model
*
*
* @section LICENSE
*
* Copyright (©) 2010-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 "aka_common.hh"
#include "resolution_penalty.hh"
/* -------------------------------------------------------------------------- */
#ifndef __AKANTU_RESOLUTION_PENALTY_QUADRATIC_HH__
#define __AKANTU_RESOLUTION_PENALTY_QUADRATIC_HH__
namespace akantu {
class ResolutionPenaltyQuadratic : public ResolutionPenalty {
/* ------------------------------------------------------------------------ */
/* Constructors/Destructors */
/* ------------------------------------------------------------------------ */
private:
using Parent = ResolutionPenalty;
public:
ResolutionPenaltyQuadratic(ContactMechanicsModel & model, const ID & id = "");
~ResolutionPenaltyQuadratic() override = default;
/* ------------------------------------------------------------------------ */
/* Methods */
/* ------------------------------------------------------------------------ */
protected:
/// initialize the resolution
void initialize();
/* ------------------------------------------------------------------------ */
/* Methods for stiffness computation */
/* ------------------------------------------------------------------------ */
protected:
/// local computaion of stiffness matrix due to stick state
void computeStickModuli(const ContactElement & /*element*/,
Matrix<Real> & /*stiffness*/);
/// local computation of stiffness matrix due to slip state
void computeSlipModuli(const ContactElement & /*element*/,
Matrix<Real> & /*stiffness*/);
/* ------------------------------------------------------------------------ */
/* Methods for stiffness computation */
/* ------------------------------------------------------------------------ */
public:
/// local computation of tangent moduli due to normal traction
void computeNormalModuli(const ContactElement & /*element*/,
Matrix<Real> & /*stiffness*/) override;
/// local computation of tangent moduli due to tangential traction
void computeTangentialModuli(const ContactElement & /*element*/,
Matrix<Real> & /*stiffness*/) override;
/* ------------------------------------------------------------------------ */
/* Methods for force computation */
/* ------------------------------------------------------------------------ */
public:
/// local computation of normal force due to normal contact
void computeNormalForce(const ContactElement & /*element*/,
Vector<Real> & /*force*/) override;
/// local computation of tangential force due to frictional traction
void computeTangentialForce(const ContactElement & /*element*/,
Vector<Real> & /*force*/) override;
protected:
/// local computation of normal traction due to penetration
Real computeNormalTraction(Real & /*gap*/);
/// local computation of trial tangential traction due to friction
void computeTrialTangentialTraction(const ContactElement & /*element*/,
const Matrix<Real> & /*covariant_basis*/,
Vector<Real> & /*traction*/);
/// local computation of tangential traction due to stick
void computeStickTangentialTraction(const ContactElement & /*unused*/,
Vector<Real> & /*traction_trial*/,
Vector<Real> & /*traction_tangential*/);
/// local computation of tangential traction due to slip
void computeSlipTangentialTraction(const ContactElement & /*element*/,
const Matrix<Real> & /*covariant_basis*/,
Vector<Real> & /*traction_trial*/,
Vector<Real> & /*traction_tangential*/);
/// local computation of tangential traction due to friction
void computeTangentialTraction(const ContactElement & /*element*/,
const Matrix<Real> & /*covariant_basis*/,
Vector<Real> & /*traction_tangential*/);
public:
void beforeSolveStep() override;
void afterSolveStep(bool converged = true) override;
};
} // namespace akantu
#endif /* __AKANTU_RESOLUTION_PENALTY_QUADRATIC_HH__ */

Event Timeline