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

From SoftMC-Wiki
Jump to: navigation, search
m (Text replace - "''<axis>''" to "<''axis''>")
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 +
{{Languages|MC-Basic:axis.TIMEJOG}}
 
{{MC-Basic
 
{{MC-Basic
 
|SHORT FORM=
 
|SHORT FORM=
Line 4: Line 5:
  
 
|SYNTAX=
 
|SYNTAX=
Jog ''<axis> <Jog velocity value> {TimeJog=<Time>}''
+
Jog <''axis''> <''Jog velocity value''> {TimeJog=<''time''>}
  
 
|AVAILABILITY=
 
|AVAILABILITY=
Line 10: Line 11:
  
 
|DESCRIPTION=
 
|DESCRIPTION=
This property is used to specify the time for which a JOG command must execute. After the specified time has passed, the axis stops. The value -1 is used to indicate that the JOG has no time limit. The time is specified within a JOG command..
+
This property specifies the time limit for execution of a JOG command. After the specified time has passed, the axis stops. The value -1 indicates that the JOG has no time limit. The time is specified within a JOG command.
  
 
|TYPE=
 
|TYPE=
Line 19: Line 20:
  
 
|UNITS=
 
|UNITS=
Milliseconds
+
milliseconds (ms)
  
 
|DEFAULT=
 
|DEFAULT=
Line 28: Line 29:
  
 
|LIMITATIONS=
 
|LIMITATIONS=
The JOG time should be an integer multiple of the SERCOS cycle time. If it is not, the actual time is rounded up to the nearest integer multiple of the SERCOS cycle time, and a message is given. The JOG command is executed. To set the value within a task, the axis must be attached to that task (using the ATTACH command).
+
*The JOG time must be an integer multiple of the SERCOS cycle time. If it is not, the actual time is rounded up to the nearest integer multiple of the SERCOS cycle time, a message is issued, and the JOG command is executed.
 +
*To set the value within a task, the axis must be attached to that task (using the ATTACH command).
  
 
|EXAMPLE=
 
|EXAMPLE=
Line 34: Line 36:
  
 
|SEE ALSO=
 
|SEE ALSO=
* [[Axystems:MC-Basic:ATTACH|ATTACH]]
+
* [[MC-Basic:ATTACH|ATTACH]]
* [[Axystems:MC-Basic:JOG|JOG]]
+
* [[MC-Basic:JOG|JOG]]
  
  
 
}}
 
}}

Latest revision as of 06:06, 21 April 2017

Language: English  • 中文(简体)‎

This property specifies the time limit for execution of a JOG command. After the specified time has passed, the axis stops. The value -1 indicates that the JOG has no time limit. The time is specified within a JOG command.

Short form

<axis>.TJog

Syntax

Jog <axis> <Jog velocity value> {TimeJog=<time>}

Availability

All versions

Type

Double

Range

-1, 0 to MaxDouble

Units

milliseconds (ms)

Default

-1

Scope

Configuration, Task or Terminal

Limitations

  • The JOG time must be an integer multiple of the SERCOS cycle time. If it is not, the actual time is rounded up to the nearest integer multiple of the SERCOS cycle time, a message is issued, and the JOG command is executed.
  • To set the value within a task, the axis must be attached to that task (using the ATTACH command).

Examples

JOG Xaxis 200 TimeJog=20

See Also