Difference between revisions of "AXY:MC-Basic:group.JERKFACTOR"

From SoftMC-Wiki
Jump to: navigation, search
m (Miborich moved page Axystems:MC-Basic:group.JERKFACTOR to MC-Basic:group.JERKFACTOR: Global renaming of Axystems: namespace into (Main):)
Line 44: Line 44:
 
|SEE ALSO=
 
|SEE ALSO=
 
* [[MC-Basic:axis.POSITIONFACTOR|axis.POSITIONFACTOR]]
 
* [[MC-Basic:axis.POSITIONFACTOR|axis.POSITIONFACTOR]]
* [[Axystems:MC-Basic:group.JERKFACTOR|group.JERKFACTOR]]
+
* [[MC-Basic:group.JERKFACTOR|group.JERKFACTOR]]
 
* [[Axystems:MC-Basic:group.VELOCITYFACTOR|group.VELOCITYFACTOR]]
 
* [[Axystems:MC-Basic:group.VELOCITYFACTOR|group.VELOCITYFACTOR]]
  
  
 
}}
 
}}

Revision as of 08:51, 22 May 2014

This property specifies the conversion factor between the user jerk units and the internal units [counts per msec3].

NOTE-Info.svgNOTE
In using JERKFACTOR for the group, the position units are taken from the POSITIONFACTOR of the axes within the group. The position units must not be specified in the group’s JERKFACTOR.

Short form

<group>.Jfac

Syntax

<group>.JerkFactor = <expression>
?<group>.JerkFactor

Availability

All versions

Type

Double

Range

Greater than zero

Default

1/6e10 (=1.667e-11). This value is suitable for working in units of position units per minute per second2.

Scope

Configuration, Task or Terminal

Limitations

Cannot be changed while axis is enabled or while axis is set up as a master axis.

To set the value within a task, the group must be attached to that task (using the ATTACH command).

JERKFACTOR is in effect only when the SMOOTHFACTOR is set to -1. Then, JERKFACTOR is always set to ACCELERATIONFACTOR/1000.

Examples

G1.Jfac = 1 / (60000 * 1000 * 1000)          ‘work in per minute per second squared

G1.Jfac = 1 / (1000 * 1000 * 1000)            ‘work in per second cubed

See Also