https://mooseframework.inl.gov
Loading...
Searching...
No Matches
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{
20public:
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
33protected:
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};
DualNumber< Real, DNDerivativeType, true > ADReal
Computes the mortar tangential frictional forces for dynamic simulations.
const bool _has_friction_function
Boolean to determine whether the friction coefficient is taken from a function.
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.
ADReal computeFrictionValue(const ADReal &contact_pressure, const Real &tangential_vel, const Real &tangential_vel_dir)
Apply constant or function-based friction coefficient.
void incorrectEdgeDroppingPost(const std::unordered_set< const Node * > &inactive_lm_nodes) override
Copy of the post routine but that skips assembling inactive nodes.
virtual void computeQpIProperties() override
Computes properties that are functions both of _qp and _i, for example the weighted gap.
virtual void enforceConstraintOnDof(const DofObject *const dof) override
Method called from post().
virtual void computeQpProperties() override
Computes properties that are functions only of the current quadrature point (_qp),...
ADRealVectorValue _qp_real_tangential_velocity_nodal
The value of the tangential velocity vectors at the current node.
std::unordered_map< const DofObject *, std::array< ADReal, 2 > > _dof_to_weighted_tangential_velocity
A map from node to two weighted tangential velocities.
const Real _epsilon
Small contact pressure value to trigger computation of frictional forces.
const ADVariableValue *const _primary_z_dot
z-velocity on the primary face
std::vector< MooseVariable * > _friction_vars
Frictional Lagrange's multiplier variable pointers.
const ADVariableValue & _secondary_y_dot
y-velocity on the secondary face
ADRealVectorValue _qp_tangential_velocity_nodal
The value of the tangential velocity vectors at the current node.
const ADVariableValue *const _secondary_z_dot
z-velocity on the secondary face
std::array< const ADReal *, 2 > _tangential_vel_ptr
An array of two pointers to avoid copies.
virtual void enforceConstraintOnDof3d(const DofObject *const dof)
Method called from post().
bool _3d
Automatic flag to determine whether we are doing three-dimensional work.
const ADVariableValue & _secondary_x_dot
x-velocity on the secondary face
const ADVariableValue & _primary_y_dot
y-velocity on the primary face
const Real _c_t
Numerical factor used in the tangential constraints for convergence purposes.
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.
const ADVariableValue & _primary_x_dot
x-velocity on the primary face
Computes the normal contact mortar constraints for dynamic simulations.
const InputParameters & parameters() const
VariableValueTempl< true > ADVariableValue