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

From SoftMC-Wiki
Jump to: navigation, search
m (1 revision)
m (Text replace - "<GROUP>" to "<''group''>")
Line 1: Line 1:
 
{{MC-Basic
 
{{MC-Basic
 
|SHORT FORM=
 
|SHORT FORM=
''<GROUP>.''Acc
+
''<''group''>.''Acc
  
 
|SYNTAX=
 
|SYNTAX=
''<GROUP>.''Acceleration = ''<expression >''<br>
+
''<''group''>.''Acceleration = ''<expression >''<br>
  
?''<GROUP>.''Acceleration
+
?''<''group''>.''Acceleration
  
 
|AVAILABILITY=
 
|AVAILABILITY=
Line 21: Line 21:
  
 
|UNITS=
 
|UNITS=
User group acceleration units, as given by ''<GROUP>.''ACCELERATIONFACTOR
+
User group acceleration units, as given by ''<''group''>.''ACCELERATIONFACTOR
  
 
|DEFAULT=
 
|DEFAULT=

Revision as of 16:27, 20 March 2014

This property sets the acceleration rate of the motion profile. When executing a motion command, ACCELERATION should be less than or equal to ACCELERATIONMAX. If it is greater, the motion is executed using the ACCELERATIONMAX value. This property can be used inside a motion command to override the permanent value.

Short form

<group>.Acc

Syntax

<group>.Acceleration = <expression >

?<group>.Acceleration

Availability

All versions

Type

Double

Range

Greater than 0

Units

User group acceleration units, as given by <group>.ACCELERATIONFACTOR

Default

500

Scope

Configuration, Task or Terminal

Limitations

The ratio between jerk and acceleration is limited by the following relation:
       Jerk/Acc < 0.9 * p/5T

where T is the sample time in seconds. For a cycle time of 2 msec, this value is 282.74. Use SMOOTHFACTOR to have jerk calculated automatically.

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

Examples

Group1.acceleration = 1e10

Move G2 (100, 200) acc = 2e10

See Also