Difference between revisions of "MC-Basic:axis.HOMEDISTANCEMAX"

From SoftMC-Wiki
Jump to: navigation, search
 
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 +
{{Languages|MC-Basic:axis.HOMEDISTANCEMAX}}
 
{{MC-Basic
 
{{MC-Basic
 
|SHORT FORM=
 
|SHORT FORM=
Line 5: Line 6:
 
|SYNTAX=
 
|SYNTAX=
 
* '''Versions 3.0 to 3.1.17:''' <''axis''>.HomeDistanceMaximum = <''value''><br>
 
* '''Versions 3.0 to 3.1.17:''' <''axis''>.HomeDistanceMaximum = <''value''><br>
* '''Versions 3.2 and higher:''' <''axis''>.HomeDistanceMax = <''value''>
+
* '''Versions 3.2 and later:''' <''axis''>.HomeDistanceMax = <''value''>
  
 
|AVAILABILITY=
 
|AVAILABILITY=
Line 11: Line 12:
  
 
|DESCRIPTION=
 
|DESCRIPTION=
 
{{Note/Important| '''THIS PROPERTY IS OBSOLETE'''}}
 
 
 
 
 
This property specifies the maximum distance that an axis is allowed to travel from the point at which the homing began (in either direction). Exceeding this limit flags an error and causes the homing to stop.
 
This property specifies the maximum distance that an axis is allowed to travel from the point at which the homing began (in either direction). Exceeding this limit flags an error and causes the homing to stop.
  
Line 38: Line 34:
 
|LIMITATIONS=
 
|LIMITATIONS=
 
* The accuracy of this limit is dependent on the homing velocity (the higher the speed, the lower the accuracy). Valid in communications phase 2 or higher.
 
* The accuracy of this limit is dependent on the homing velocity (the higher the speed, the lower the accuracy). Valid in communications phase 2 or higher.
* To set the value within a task, the axis must be attached to that task (using the ATTACH command).
+
* To set the value within a task, the axis must be attached to that task (using the ATTACH command)
 +
*Not supported in EtherCAT system
  
 
|EXAMPLE=
 
|EXAMPLE=
Line 44: Line 41:
  
 
|SEE ALSO=
 
|SEE ALSO=
* [[Axystems:MC-Basic:ATTACH|ATTACH]]
+
* [[MC-Basic:ATTACH|ATTACH]]
* [[Axystems:MC-Basic:HOME|HOME]]
+
* [[MC-Basic:HOME|HOME]]
  
[[Category:Axystems:Obsolete|axis.HomeDistanceMax]]
+
[[Category:Obsolete|axis.HomeDistanceMax]]
 
}}
 
}}

Latest revision as of 07:46, 19 April 2017

Language: English  • 中文(简体)‎

This property specifies the maximum distance that an axis is allowed to travel from the point at which the homing began (in either direction). Exceeding this limit flags an error and causes the homing to stop.

Assigning HDISMAX to -1 causes no maximum distance checking.

Short form

<axis>.HdisMax

Syntax

  • Versions 3.0 to 3.1.17: <axis>.HomeDistanceMaximum = <value>
  • Versions 3.2 and later: <axis>.HomeDistanceMax = <value>

Availability

All versions

Type

Double

Range

-1, 0 to MaxDouble

Units

User position units

Default

-1

Scope

Task or Terminal

Limitations

  • The accuracy of this limit is dependent on the homing velocity (the higher the speed, the lower the accuracy). Valid in communications phase 2 or higher.
  • To set the value within a task, the axis must be attached to that task (using the ATTACH command)
  • Not supported in EtherCAT system

Examples

a1.hdismax = 1000

See Also