Model Element |
Class NameCvsf Description |
Cvsf defines a higher pair constraint. A curve on one body slides on a surface that is fixed to a second body. The curve is not allowed to lift off the surface. Attribute Summary |
Name |
Property |
Modifiable by command? |
id |
Int () |
|
label |
String () |
|
curve |
Reference ("Curve") |
✓ |
surface |
Reference ("Surface") |
✓ |
irm |
Reference ("Marker") |
✓ |
jrm |
Reference ("Marker") |
|
idisp |
Double ([0,0,0], count=3) |
|
jdisp |
Double ([0,0,0], count=3) |
|
no_slip |
Bool () |
|
active |
Bool () |
✓ |
Usage |
||||||
Cvsf (irm=objMarker, curve=objCurve, jrm=objMarker, surface=objSurface, optional_attributes) |
||||||
Attribute Description |
||||||
irm |
Reference to an existing Marker Specifies a marker that serves as the coordinate system for the definition of the curve. The curve is fixed to the body containing this marker and moves with this body. The body containing the surface can be flexible, rigid or point body. The irm attribute is mandatory. |
|||||
curve |
Reference to an existing Curve Specifies the curve that contains the curve data points. This attribute is mandatory. |
|||||
jrm |
Reference to an existing Marker Specifies a marker that defines the coordinate system in which the surface points are defined. The surface is fixed to the body containing this marker and moves rigidly with this body. The body containing the surface can be flexible, rigid or point body. This attribute is mandatory. |
|||||
surface
|
Reference to an existing Surface Specifies the surface that contains the surface data points. This attribute is mandatory. |
|||||
id |
Integer Specifies the element identification number. This number must be unique among all the CVSF objects in the model. This attribute is optional. MotionSolve will automatically create an ID when one is not specified. Range of values: id > 0 |
|||||
label |
String Specifies the name of the CVSF object. This attribute is optional. When not specified, MotionSolve will create a label for you. |
|||||
idisp |
List of 3 Doubles or a Location object Defines a guess for the initial contact point on the curve. The coordinates are measured with respect to irm and are defined in its coordinate system. MotionSolve uses idisp as the starting point for an iterative calculation to determine the exact values for the initial contact point on the curve This attribute is optional. |
|||||
jdisp |
List of 3 Doubles or a Location object Defines a guess for the initial contact point on the surface. The coordinates are measured with respect to jrm and are defined in its coordinate system. MotionSolve uses jdisp as the starting point for an iterative calculation to determine the exact values for the initial contact point on the curve This attribute is optional. |
|||||
no_slip |
Indicates if slipping is allowed along the curve |
|||||
active |
Bool Select one from True or False.
The attribute active is optional. When not specified, active defaults to True |
|||||
Comments
|
||||||
Example
|
||||||
cvsf = Cvsf (irm=refCurve1, curve=curve1, jrm=refSurface1, surface=surface1, label="CVSF Joint") cvsf.idisp = [0.2, 50.8, 0.1] cvsf.jdisp = [0.3, 32.1, 1.1] |