https://mooseframework.inl.gov
Loading...
Searching...
No Matches
WeightedVelocitiesUserObject.C
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
11#include "MooseVariableField.h"
12#include "SubProblem.h"
13#include "SystemBase.h"
14#include "MortarUtils.h"
15#include "MooseUtils.h"
16#include "MortarContactUtils.h"
18#include "libmesh/quadrature.h"
19
22{
24 params.addRequiredParam<VariableName>("secondary_variable",
25 "Primal variable on secondary surface.");
26 params.addParam<VariableName>(
27 "primary_variable",
28 "Primal variable on primary surface. If this parameter is not provided then the primary "
29 "variable will be initialized to the secondary variable");
30 return params;
31}
32
34 : WeightedGapUserObject(parameters),
35 // Must explicitly call this method on parameters due to GCC 14 bug
36 // in mail-archive.com/gcc-bugs@gcc.gnu.org/msg878282.html
37 _sys(*parameters.getCheckedPointerParam<SystemBase *>("_sys")),
38 _secondary_var(
39 isParamValid("secondary_variable")
40 ? _sys.getActualFieldVariable<Real>(_tid, parameters.getMooseType("secondary_variable"))
41 : _sys.getActualFieldVariable<Real>(_tid, parameters.getMooseType("primary_variable"))),
42 _primary_var(
43 isParamValid("primary_variable")
44 ? _sys.getActualFieldVariable<Real>(_tid, parameters.getMooseType("primary_variable"))
45 : _secondary_var),
46 _secondary_x_dot(_secondary_var.adUDot()),
47 _primary_x_dot(_primary_var.adUDotNeighbor()),
48 _secondary_y_dot(adCoupledDot("disp_y")),
49 _primary_y_dot(adCoupledNeighborValueDot("disp_y")),
50 _secondary_z_dot(_has_disp_z ? &adCoupledDot("disp_z") : nullptr),
51 _primary_z_dot(_has_disp_z ? &adCoupledNeighborValueDot("disp_z") : nullptr),
52 _3d(_has_disp_z)
53{
54 if (!getParam<bool>("use_displaced_mesh"))
55 paramError("use_displaced_mesh",
56 "'use_displaced_mesh' must be true for the WeightedVelocitiesUserObject object");
57}
58
59void
61{
62 // Compute the value of _qp_gap
64
65 // Trim derivatives
66 const auto & primary_ip_lowerd_map = amg().getPrimaryIpToLowerElementMap(
68 const auto & secondary_ip_lowerd_map =
70
71 std::array<const MooseVariable *, 3> var_array{{_disp_x_var, _disp_y_var, _disp_z_var}};
72 std::array<ADReal, 3> primary_disp_dot{
73 {_primary_x_dot[_qp], _primary_y_dot[_qp], _has_disp_z ? (*_primary_z_dot)[_qp] : 0}};
74 std::array<ADReal, 3> secondary_disp_dot{
75 {_secondary_x_dot[_qp], _secondary_y_dot[_qp], _has_disp_z ? (*_secondary_z_dot)[_qp] : 0}};
76
77 trimInteriorNodeDerivatives(primary_ip_lowerd_map, var_array, primary_disp_dot, false);
78 trimInteriorNodeDerivatives(secondary_ip_lowerd_map, var_array, secondary_disp_dot, true);
79
80 const ADReal & prim_x_dot = primary_disp_dot[0];
81 const ADReal & prim_y_dot = primary_disp_dot[1];
82 const ADReal * prim_z_dot = nullptr;
83 if (_has_disp_z)
84 prim_z_dot = &primary_disp_dot[2];
85
86 const ADReal & sec_x_dot = secondary_disp_dot[0];
87 const ADReal & sec_y_dot = secondary_disp_dot[1];
88 const ADReal * sec_z_dot = nullptr;
89 if (_has_disp_z)
90 sec_z_dot = &secondary_disp_dot[2];
91
92 // Build relative velocity vector
93 ADRealVectorValue relative_velocity;
94
95 if (_3d)
96 relative_velocity = {sec_x_dot - prim_x_dot, sec_y_dot - prim_y_dot, *sec_z_dot - *prim_z_dot};
97 else
98 relative_velocity = {sec_x_dot - prim_x_dot, sec_y_dot - prim_y_dot, 0.0};
99
100 // Geometry is averaged and used at the nodes for constraint enforcement.
101 _qp_real_tangential_velocity_nodal = relative_velocity;
102 _qp_tangential_velocity_nodal = relative_velocity * (_JxW_msm[_qp] * _coord[_qp]);
103}
104
105void
107{
109
110 const auto & nodal_tangents = amg().getNodalTangents(*_lower_secondary_elem);
111 // Get the _dof_to_weighted_tangential_velocity map
112 const DofObject * const dof =
113 _is_weighted_gap_nodal ? cast_ptr<const DofObject *>(_lower_secondary_elem->node_ptr(_i))
114 : cast_ptr<const DofObject *>(_lower_secondary_elem);
115
117 (*_test)[_i][_qp] * _qp_tangential_velocity_nodal * nodal_tangents[0][_i];
119 (*_test)[_i][_qp] * _qp_real_tangential_velocity_nodal * nodal_tangents[0][_i];
120
121 // Get the _dof_to_weighted_tangential_velocity map for a second direction
122 if (_3d)
123 {
125 (*_test)[_i][_qp] * _qp_tangential_velocity_nodal * nodal_tangents[1][_i];
126
128 (*_test)[_i][_qp] * _qp_real_tangential_velocity_nodal * nodal_tangents[1][_i];
129 }
130}
131
132void
138
139void
146
147void
149{
151
152 // If the constraint is performed by the owner, then we don't need any data sent back; the owner
153 // will take care of it. But if the constraint is not performed by the owner and we might have to
154 // do some of the constraining ourselves, then we need data sent back to us
155 const bool send_data_back = !constrainedByOwner();
156
159 _nodal,
161 send_data_back);
164}
DualNumber< Real, DNDerivativeType, true > ADReal
std::map< unsigned int, unsigned int > getSecondaryIpToLowerElementMap(const Elem &lower_secondary_elem) const
std::map< unsigned int, unsigned int > getPrimaryIpToLowerElementMap(const Elem &primary_elem, const Elem &primary_elem_ip, const Elem &lower_secondary_elem) const
std::array< MooseUtils::SemidynamicVector< Point, 9 >, 2 > getNodalTangents(const Elem &secondary_elem) const
void addRequiredParam(const std::string &name, const std::string &doc_string)
void addParam(const std::string &name, const std::initializer_list< typename T::value_type > &value, const std::string &doc_string)
void paramError(const std::string &param, Args... args) const
Elem const *const & _lower_secondary_elem
const AutomaticMortarGeneration & amg() const
Elem const *const & _lower_primary_elem
static void trimInteriorNodeDerivatives(const std::map< unsigned int, unsigned int > &primary_ip_lowerd_map, const Variables &moose_var, DualNumbers &ad_vars, const bool is_secondary)
const std::vector< Real > & _JxW_msm
virtual MooseMesh & mesh()=0
SubProblem & _subproblem
Creates dof object to weighted gap map.
static InputParameters validParams()
unsigned int _i
Test function index.
const MooseVariable *const _disp_x_var
The x displacement variable.
virtual void computeQpProperties()
Computes properties that are functions only of the current quadrature point (_qp),...
const bool _has_disp_z
For 2D mortar contact no displacement will be specified, so const pointers used.
virtual void finalize() override
unsigned int _qp
Quadrature point index for the mortar segments.
const MooseArray< Real > & _coord
Member for handling change of coordinate systems (xyz, rz, spherical)
const MooseVariable *const _disp_y_var
The y displacement variable.
const MooseVariable *const _disp_z_var
The z displacement variable.
virtual void computeQpIProperties()
Computes properties that are functions both of _qp and _i, for example the weighted gap.
virtual void initialize() override
bool _is_weighted_gap_nodal
Whether the weighted gap is associated with nodes or elements (like for a CONSTANT MONOMIAL Lagrange ...
virtual bool constrainedByOwner() const =0
const bool _nodal
Whether the dof objects are nodal; if they're not, then they're elemental.
WeightedVelocitiesUserObject(const InputParameters &parameters)
virtual void computeQpProperties() override
Computes properties that are functions only of the current quadrature point (_qp),...
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_y_dot
y-velocity on the primary face
const ADVariableValue & _primary_x_dot
x-velocity on the primary face
virtual void computeQpIProperties() override
Computes properties that are functions both of _qp and _i, for example the weighted gap.
const ADVariableValue & _secondary_x_dot
x-velocity on the secondary face
ADRealVectorValue _qp_real_tangential_velocity_nodal
The value of the real tangential velocity vectors at the current node.
ADRealVectorValue _qp_tangential_velocity_nodal
The value of the tangential velocity vectors at the current node.
bool _3d
Automatic flag to determine whether we are doing three-dimensional work.
const ADVariableValue & _secondary_y_dot
y-velocity on the secondary face
std::unordered_map< const DofObject *, std::array< ADReal, 2 > > _dof_to_real_tangential_velocity
A map from node to two interpolated, physical tangential velocities.
const Parallel::Communicator & _communicator
void communicateVelocities(std::unordered_map< const DofObject *, T > &dof_map, const MooseMesh &mesh, const bool nodal, const Parallel::Communicator &communicator, const bool send_data_back)
This function is used to communicate velocities across processes.