ObjectConnectorCartesianSpringDamper
An 3D spring-damper element, providing springs and dampers in three (global) directions (x,y,z); the connector can be attached to position-based markers.
Additional information for ObjectConnectorCartesianSpringDamper:
- This
Object
has/provides the following types =Connector
- Requested
Marker
type =Position
- Short name for Python =
CartesianSpringDamper
- Short name for Python visualization object =
VCartesianSpringDamper
The item ObjectConnectorCartesianSpringDamper with type = ‘ConnectorCartesianSpringDamper’ has the following parameters:
- name [type = String, default = ‘’]:connector’s unique name
- markerNumbers [\([m0,m1]\tp\), type = ArrayMarkerIndex, default = [ invalid [-1], invalid [-1] ]]:list of markers used in connector
- stiffness [\({\mathbf{k}}\), type = Vector3D, default = [0.,0.,0.]]:stiffness [SI:N/m] of springs; act against relative displacements in 0, 1, and 2-direction
- damping [\({\mathbf{d}}\), type = Vector3D, default = [0.,0.,0.]]:damping [SI:N/(m s)] of dampers; act against relative velocities in 0, 1, and 2-direction
- offset [\({\mathbf{v}}_{\mathrm{off}}\), type = Vector3D, default = [0.,0.,0.]]:offset between two springs
- springForceUserFunction [\(\mathrm{UF} \in \Rcal^3\), type = PyFunctionVector3DmbsScalarIndexScalar4Vector3D, default = 0]:A Python function which computes the 3D force vector between the two marker points, if activeConnector=True; see description below
- activeConnector [type = Bool, default = True]:flag, which determines, if the connector is active; used to deactivate (temporarily) a connector or constraint
- visualization [type = VObjectConnectorCartesianSpringDamper]:parameters for visualization of item
The item VObjectConnectorCartesianSpringDamper has the following parameters:
- show [type = Bool, default = True]:set true, if item is shown in visualization and false if it is not shown
- drawSize [type = float, default = -1.]:drawing size = diameter of spring; size == -1.f means that default connector size is used
- color [type = Float4, default = [-1.,-1.,-1.,-1.]]:RGBA connector color; if R==-1, use default color
DESCRIPTION of ObjectConnectorCartesianSpringDamper
The following output variables are available as OutputVariableType in sensors, Get…Output() and other functions:
Displacement
: \(\Delta\! \LU{0}{{\mathbf{p}}} = \LU{0}{{\mathbf{p}}}_{m1} - \LU{0}{{\mathbf{p}}}_{m0}\)relative displacement in global coordinatesDistance
: \(L=|\Delta\! \LU{0}{{\mathbf{p}}}|\)scalar distance between both marker pointsVelocity
: \(\Delta\! \LU{0}{{\mathbf{v}}} = \LU{0}{{\mathbf{v}}}_{m1} - \LU{0}{{\mathbf{v}}}_{m0}\)relative translational velocity in global coordinatesForce
: \({\mathbf{f}}_{SD}\)joint force in global coordinates, see equations
Definition of quantities
intermediate variables
|
symbol
|
description
|
---|---|---|
marker m0 position
|
\(\LU{0}{{\mathbf{p}}}_{m0}\)
|
current global position which is provided by marker m0
|
marker m1 position
|
\(\LU{0}{{\mathbf{p}}}_{m1}\)
|
|
marker m0 velocity
|
\(\LU{0}{{\mathbf{v}}}_{m0}\)
|
current global velocity which is provided by marker m0
|
marker m1 velocity
|
\(\LU{0}{{\mathbf{v}}}_{m1}\)
|
Connector forces
Connector forces are based on relative displacements and relative veolocities in global coordinates. Relative displacement between marker m0 to marker m1 positions is given by
and relative velocity reads
If activeConnector = True
, the spring force vector is computed as
If the springForceUserFunction \(\mathrm{UF}\) is defined, \({\mathbf{f}}_{SD}\) instead becomes (\(t\) is current time)
and iN
represents the itemNumber (=objectNumber).
If activeConnector = False
, \({\mathbf{f}}_{SD}\) is set to zero.
The force \({\mathbf{f}}_{SD}\) acts via the markers’ position jacobians \({\mathbf{J}}_{pos,m0}\) and \({\mathbf{J}}_{pos,m1}\). The generalized forces added to the LHS equations read for marker \(m0\),
and for marker \(m1\),
The LHS equation parts are added accordingly using the LTG mapping. Note that the different signs result from the signs in Eq. (72).
The connector also provides an analytic jacobian, which is used if newton.numericalDifferentiation.forODE2 = False
and if there is no springForceUserFunction (otherwise numerical differentiation is used).
The anayltic jacobian for the coupled equation parts \({\mathbf{f}}_{LHS,m0}\) and \({\mathbf{f}}_{LHS,m1}\) is based on the local jacobians
Here, \(f_{ODE2}\) is the factor for the position derivative and \(f_{ODE2_t}\) is the factor for the velocity derivative, which allows a computation of the computation for both the position as well as the velocity part at the same time.
The complete jacobian for the LHS equations then reads,
Here, \({\mathbf{q}}_{m0}\) are the coordinates associated with marker \(m0\) and \({\mathbf{q}}_{m1}\) of marker \(m1\).
The second term \({\mathbf{J}}_{CSD'}\) is only non-zero if \(\frac{\partial \LU{0}{{\mathbf{J}}_{pos,i}\tp}}{\partial {\mathbf{q}}_{i}}\) is non-zero, using \(i \in \{m0, \, m1\}\). As the latter terms would require to compute a 3-dimensional array, the second jacobian term is computed as
in which we set \({\mathbf{f}}' = \LU{0}{{\mathbf{f}}_{SD}}\), but the derivatives in Eq. (73) are evaluated by setting \({\mathbf{f}}' = const\).
Userfunction: springForceUserFunction(mbs, t, itemNumber, displacement, velocity, stiffness, damping, offset)
A user function, which computes the 3D spring force vector depending on time, object variables (deltaL, deltaL_t) and object parameters
(stiffness, damping, force).
The object variables are provided to the function using the current values of the SpringDamper object.
Note that itemNumber represents the index of the object in mbs, which can be used to retrieve additional data from the object through
mbs.GetObjectParameter(itemNumber, ...)
, see the according description of GetObjectParameter
.
arguments / return
|
type or size
|
description
|
---|---|---|
mbs |
MainSystem
|
provides MainSystem mbs in which underlying item is defined
|
t |
Real
|
current time in mbs
|
itemNumber |
Index
|
integer number \(i_N\) of the object in mbs, allowing easy access to all object data via mbs.GetObjectParameter(itemNumber, …)
|
displacement |
Vector3D
|
\(\Delta\! \LU{0}{{\mathbf{p}}}\)
|
velocity |
Vector3D
|
\(\Delta\! \LU{0}{{\mathbf{v}}}\)
|
stiffness |
Vector3D
|
copied from object
|
damping |
Vector3D
|
copied from object
|
offset |
Vector3D
|
copied from object
|
returnValue
|
Vector3D
|
list or numpy array of computed spring force
|
User function example:
#define simple force for spring-damper:
def UFforce(mbs, t, itemNumber, u, v, k, d, offset):
return [u[0]*k[0],u[1]*k[1],u[2]*k[2]]
#markerNumbers and parameters taken from mini example
mbs.AddObject(CartesianSpringDamper(markerNumbers = [mGround, mMass],
stiffness = [k,k,k],
damping = [0,k*0.05,0], offset = [0,0,0],
springForceUserFunction = UFforce))
MINI EXAMPLE for ObjectConnectorCartesianSpringDamper
1#example with mass at [1,1,0], 5kg under load 5N in -y direction
2k=5000
3nMass = mbs.AddNode(NodePoint(referenceCoordinates=[1,1,0]))
4oMass = mbs.AddObject(MassPoint(physicsMass = 5, nodeNumber = nMass))
5
6mMass = mbs.AddMarker(MarkerNodePosition(nodeNumber=nMass))
7mGround = mbs.AddMarker(MarkerBodyPosition(bodyNumber=oGround, localPosition = [1,1,0]))
8mbs.AddObject(CartesianSpringDamper(markerNumbers = [mGround, mMass],
9 stiffness = [k,k,k],
10 damping = [0,k*0.05,0], offset = [0,0,0]))
11mbs.AddLoad(Force(markerNumber = mMass, loadVector = [0, -5, 0])) #static solution=-5/5000=-0.001m
12
13#assemble and solve system for default parameters
14mbs.Assemble()
15mbs.SolveDynamic()
16
17#check result at default integration time
18exudynTestGlobals.testResult = mbs.GetNodeOutput(nMass, exu.OutputVariableType.Displacement)[1]
Relevant Examples and TestModels with weblink:
mouseInteractionExample.py (Examples/), rigid3Dexample.py (Examples/), sliderCrank3DwithANCFbeltDrive2.py (Examples/), ANCFcontactCircle.py (Examples/), ANCFcontactCircle2.py (Examples/), ANCFslidingJoint2D.py (Examples/), flexibleRotor3Dtest.py (Examples/), lavalRotor2Dtest.py (Examples/), NGsolvePistonEngine.py (Examples/), NGsolvePostProcessingStresses.py (Examples/), objectFFRFreducedOrderNetgen.py (Examples/), particlesTest3D.py (Examples/), scissorPrismaticRevolute2D.py (TestModels/), sphericalJointTest.py (TestModels/), ANCFcontactCircleTest.py (TestModels/)
The web version may not be complete. For details, consider also the Exudyn PDF documentation : theDoc.pdf