MC-Basic:axis.POSITIONMAX

From SoftMC-Wiki
Revision as of 07:30, 20 April 2017 by Chi (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
Language: English  • 中文(简体)‎

This property is a software limit defining the upper limit of the axis. Motion commands with target positions above this limit are not be allowed. If an axis has passed the limit, motion commands to move it away from the limit are allowed. The upper position limit is enabled or disabled using the POSITIONMAXENABLE property.


IMPORTANT.svgIMPORTANT
In groups/robots there exist a additional PMAX value to every joint which differs from the axis value. For example A1.PMAX ≠ J1.PMAX. Irrespectively if the group coupling is turned on or off.

Short form

<axis>.PMax

Syntax

<axis>.PositionMax = <expression>

?<axis>.PositionMax

Availability

All versions

Type

Double

Range

± Max Double

Units

User axis position units, as given by <axis>.POSITIONFACTOR.

Default

MaxDouble

Scope

Configuration, Task or Terminal

Limitations

  • Cannot be changed while the axis is moving.
  • Must be greater than the lower limit, PMIN.
  • To set the value within a task, the axis must be attached to that task (using the ATTACH command).

Examples

Xaxis.PMax  = 1002

See Also