https://mooseframework.inl.gov
ComputeDynamicFrictionalForceLMMechanicalContact.h
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://mooseframework.inl.gov
3 //*
4 //* All rights reserved, see COPYRIGHT for full restrictions
5 //* https://github.com/idaholab/moose/blob/master/COPYRIGHT
6 //*
7 //* Licensed under LGPL 2.1, please see LICENSE for details
8 //* https://www.gnu.org/licenses/lgpl-2.1.html
9 
10 #pragma once
11 
13 
19 {
20 public:
22 
24  void residualSetup() override;
25  void post() override;
26 
30  void
31  incorrectEdgeDroppingPost(const std::unordered_set<const Node *> & inactive_lm_nodes) override;
32 
33 protected:
38  virtual void computeQpProperties() override;
39 
43  virtual void computeQpIProperties() override;
44 
51  virtual void enforceConstraintOnDof(const DofObject * const dof) override;
52 
59  virtual void enforceConstraintOnDof3d(const DofObject * const dof);
60 
61  void timestepSetup() override;
62 
66  ADReal computeFrictionValue(const ADReal & contact_pressure,
67  const Real & tangential_vel,
68  const Real & tangential_vel_dir);
69 
71  std::unordered_map<const DofObject *, std::array<ADReal, 2>> _dof_to_weighted_tangential_velocity;
72 
74  std::unordered_map<const DofObject *, std::array<Real, 2>> _dof_to_real_tangential_velocity;
75 
77  std::unordered_map<const DofObject *, std::array<Real, 2>> _dof_to_old_real_tangential_velocity;
78 
80  std::array<const ADReal *, 2> _tangential_vel_ptr = {{nullptr, nullptr}};
81 
84 
87 
89  const Real _c_t;
90 
92  std::vector<MooseVariable *> _friction_vars;
93 
96 
99 
102 
105 
108 
111 
113  const Real _epsilon;
114 
116  const Real _mu;
117 
120 
123 
125  bool _3d;
126 };
virtual void computeQpProperties() override
Computes properties that are functions only of the current quadrature point (_qp), e.g.
ADRealVectorValue _qp_tangential_velocity_nodal
The value of the tangential velocity vectors at the current node.
ADRealVectorValue _qp_real_tangential_velocity_nodal
The value of the tangential velocity vectors at the current node.
std::unordered_map< const DofObject *, std::array< Real, 2 > > _dof_to_real_tangential_velocity
A map from node to two tangential velocities. Required to have direct connection to physics...
const Real _epsilon
Small contact pressure value to trigger computation of frictional forces.
ADReal computeFrictionValue(const ADReal &contact_pressure, const Real &tangential_vel, const Real &tangential_vel_dir)
Apply constant or function-based friction coefficient.
const ADVariableValue *const _primary_z_dot
z-velocity on the primary face
std::vector< MooseVariable * > _friction_vars
Frictional Lagrange&#39;s multiplier variable pointers.
Computes the normal contact mortar constraints for dynamic simulations.
DualNumber< Real, DNDerivativeType, true > ADReal
void incorrectEdgeDroppingPost(const std::unordered_set< const Node *> &inactive_lm_nodes) override
Copy of the post routine but that skips assembling inactive nodes.
std::unordered_map< const DofObject *, std::array< ADReal, 2 > > _dof_to_weighted_tangential_velocity
A map from node to two weighted tangential velocities.
const ADVariableValue & _primary_x_dot
x-velocity on the primary face
virtual void enforceConstraintOnDof3d(const DofObject *const dof)
Method called from post().
virtual void enforceConstraintOnDof(const DofObject *const dof) override
Method called from post().
std::unordered_map< const DofObject *, std::array< Real, 2 > > _dof_to_old_real_tangential_velocity
A map from node to two old tangential velocities. Required to have direct connection to physics...
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
const ADVariableValue *const _secondary_z_dot
z-velocity on the secondary face
const InputParameters & parameters() const
std::array< const ADReal *, 2 > _tangential_vel_ptr
An array of two pointers to avoid copies.
const bool _has_friction_function
Boolean to determine whether the friction coefficient is taken from a function.
const ADVariableValue & _secondary_y_dot
y-velocity on the secondary face
Computes the mortar tangential frictional forces for dynamic simulations.
bool _3d
Automatic flag to determine whether we are doing three-dimensional work.
virtual void computeQpIProperties() override
Computes properties that are functions both of _qp and _i, for example the weighted gap...
const ADVariableValue & _primary_y_dot
y-velocity on the primary face
const ADVariableValue & _secondary_x_dot
x-velocity on the secondary face
const Real _c_t
Numerical factor used in the tangential constraints for convergence purposes.