ObjectContactSphereSphere
[UNDER CONSTRUCTION] A simple contact connector between two spheres. The connector implements at least the same functionality as in GeneralContact and is intended for simple setups and for testing, while GeneralContact is much more efficient due to parallelization approaches and efficient contact search.
Authors: Gerstmayr Johannes, Weyrer Sebastian
Additional information for ObjectContactSphereSphere:
- This
Object
has/provides the following types =Connector
- Requested
Marker
type =Position
+Orientation
- Requested
Node
type =GenericData
The item ObjectContactSphereSphere with type = ‘ContactSphereSphere’ has the following parameters:
- name [type = String, default = ‘’]:constraints’s unique name
- markerNumbers [
, type = ArrayMarkerIndex, size = 2, default = [ invalid [-1], invalid [-1] ]]:list of markers representing centers of spheres, used in connector - nodeNumber [
, type = NodeIndex, default = invalid (-1)]:node number of a NodeGenericData with numberOfDataCoordinates = 4 dataCoordinates, needed for discontinuous iteration (friction and contact); data variables contain values from last PostNewton iteration: data[0] is the gap, data[1] is the norm of the tangential velocity (and thus contains information if it is stick or slip); data[2] is the impact velocity; data[3] is the plastic overlap of the Edinburgh Adhesive Elasto-Plastic Model, initialized usually with 0 and set back to 0 in case that spheres have been separated. - spheresRadii [
, type = Vector2D, size = 2, default = [-1.,-1.]]:Vector containing radius of sphere 0 and radius of sphere 1 [SI:m] - dynamicFriction [
, type = UReal, default = 0.]:dynamic friction coefficient for friction model, see StribeckFunction in exudyn.physics, Section Module: physics - frictionProportionalZone [
, type = UReal, default = 1e-3]:limit velocity [m/s] up to which the friction is proportional to velocity (for regularization / avoid numerical oscillations), see StribeckFunction in exudyn.physics (named regVel there!), Section Module: physics - contactStiffness [
, type = UReal, default = 0.]:normal contact stiffness [SI:N/m] (units in case that ) - contactDamping [
, type = UReal, default = 0.]:linear normal contact damping [SI:N/(m s)]; this damping should be used (!=0) if the restitution coefficient is < 1, as it changes its behavior. - contactStiffnessExponent [
, type = PReal, default = 1.]:exponent in normal contact model [SI:1] - constantPullOffForce [
, type = UReal, default = 0.]:constant adhesion force [SI:N]; Edinburgh Adhesive Elasto-Plastic Model - contactPlasticityRatio [
, type = UReal, default = 0.]:ratio of contact stiffness for first loading and unloading/reloading [SI:1]; Edinburgh Adhesive Elasto-Plastic Model; , which gives the contact stiffness for unloading/reloading ; set to 0 in order to fully deactivate Edinburgh Adhesive Elasto-Plastic Model model - adhesionCoefficient [
, type = UReal, default = 0.]:coefficient for adhesion [SI:N/m] (units in case that ); Edinburgh Adhesive Elasto-Plastic Model; set to 0 to deactivate adhesion model - adhesionExponent [
, type = UReal, default = 1.]:exponent for adhesion coefficient [SI:1]; Edinburgh Adhesive Elasto-Plastic Model - restitutionCoefficient [
, type = PReal, default = 1.]:coefficient of restitution [SI:1]; used in particular for impact mechanics; different models available within parameter impactModel; the coefficient must be > 0, but can become arbitrarily small to emulate plastic impact (however very small values may lead to numerical problems) - minimumImpactVelocity [
, type = UReal, default = 0.]:minimal impact velocity for coefficient of restitution [SI:1]; this value adds a lower bound for impact velocities for calculation of viscous impact force; it can be used to apply a larger damping behavior for low impact velocities (or permanent contact) - impactModel [
, type = UInt, default = 0]:number of impact model: 0) linear model (only linear damping is used); 1) Hunt-Crossley model; 2) Gonthier/EtAl-Carvalho/Martins mixed model; model 2 is much more accurate regarding the coefficient of restitution, in the full range [0,1] except for 0; NOTE: in all models, the linear contactDamping still added, if not set to zero! - activeConnector [type = Bool, default = True]:flag, which determines, if the connector is active; used to deactivate (temporarily) a connector or constraint
- visualization [type = VObjectContactSphereSphere]:parameters for visualization of item
The item VObjectContactSphereSphere has the following parameters:
- show [type = Bool, default = False]:set true, if item is shown in visualization and false if it is not shown; draws spheres by given radii
- color [type = Float4, default = [0.7,0.7,0.7,1.]]:RGBA connector color; if R==-1, use default color
DESCRIPTION of ObjectContactSphereSphere
The following output variables are available as OutputVariableType in sensors, Get…Output() and other functions:
Director3
:contains normalized vector from marker 0 to marker 1Displacement
:global displacement vector between the two spheres midpointsDisplacementLocal
:3D Vector, containing only gap (Z-component)Velocity
:global relative velocity between the two spheres midpointsForce
:global contact force vectorTorque
:global torque due to friction on marker 0; to obetain torque on marker 1, multiply the torque with the factor
Definition of quantities
intermediate variables
|
symbol
|
description
|
---|---|---|
marker m0 position
|
global position of sphere 0 center as provided by marker m0
|
|
marker m0 orientation
|
current rotation matrix provided by marker m0
|
|
marker m1 position
|
global position of sphere 1 center as provided by marker m1
|
|
marker m1 orientation
|
current rotation matrix provided by marker m1
|
|
data coordinates
|
hold the current gap (0), the (norm of the) tangential velocity (1), the impact velocity (2), and the plastic deformation (3) of the adhesion model
|
|
marker m0 velocity
|
current global velocity which is provided by marker m0
|
|
marker m1 velocity
|
current global velocity which is provided by marker m1
|
|
marker m0 angular velocity
|
current angular velocity vector provided by marker m0
|
|
marker m1 angular velocity
|
current angular velocity vector provided by marker m1
|
Connector Forces
This section outlines the computation of the forces acting on the two spheres when they are in contact with each other. Two types of forces can act on the spheres due to the connector:
normal force computed according to the chosen impact model
and with contact damping if ; this type of force does not create a torque acting on the spheres.tangential force due to a regularized friction law to model dry friction between the spheres; this type of force creates a torque acting on the spheres and is computed independently of the chosen impact model if
is set. Note that in the implemented model, rolling deformations are not considered, i.e. the friction is only a function of the relative tangential velocity between the spheres at the contact point.

Fig. 46 Two spheres that are in contact, showing a force on marker 1 in normal direction due to overlap; forces on marker 0 act in opposite direction.
For the following, the gap
and the overlap
The scalar normal (gap) velocity
and the tangential (gap) velocity
To take the angular velocity of the spheres into account, the velocities
The normal force acting on marker 1 is generally written as
where
The negative sign is because of the damping acting against the gap velocity: in the case of a positive normal (gap) velocity, the damping acts against
: the Adhesive Elasto-Plastic model described in is used. This model captures the key bulk behavior of cohesive powders and granular soils. For the impact model, the plastic overlap is needed. It is computed with
Note that
: the restitution model proposed by Hunt and Crossley in is used to simulate the energy loss of the spheres during contact:
Note that the Hunt-Crossley restitution is valid for a very small energy loss (
: a generalization of the Hunt-Crossley restitution proposed by Carvalho and Martins in is used for and a model proposed by Gonthier et al. in is used for impacts with a high plastic proportion, . Note that the two models are identical at . is therefore computed as follows:
The tangential force acting on marker 1 due to the friction model acts against the tangential velocity
Note that the case distinction above is made to ensure that for very small relative velocities the friction force does not become implausibly high. Taken together, the force acting on marker 1 due to the connector is computed as
the force acting on marker 0 is
and on marker 0 as
It can be seen that the torque due to the connector is the same for both spheres, if
Relevant Examples and TestModels with weblink:
newtonsCradle.py (Examples/), contactSphereSphereTest.py (TestModels/), contactSphereSphereTestEAPM.py (TestModels/)
The web version may not be complete. For details, consider also the Exudyn PDF documentation : theDoc.pdf