ID : 215
Speed
Function
To change the internal speed.
Syntax
Speed speed
Guaranteed Entry
- Speed
- Specify the internal speed by Single Precision Real Number Type data within the range of 0.1-100. The unit is "%."
Description
The internal speed of the arm group for which the task acquired control is changed.
Change of internal speed is accompanied by change of internal acceleration and internal deceleration. Refer to Setting the Reduced Ratios of the Programmed Speed, Acceleration, and Deceleration.
To execute this statement, the task must acquire any axis control.
Related Terms
Accel, Decel, ExtSpeed, ExtAccel, ExtDecel, CurSpd, CurAcc, CurDec, CurExtSpd, CurExtAcc, CurExtDec
Attention
-
Example
'!TITLE "Internal Traveling Speed Setting"
' Set internal traveling speed
Sub Sample_Speed
Dim aaa As Position
Dim bbb As Position
TakeArm Keep = 1
' Set traveling speed to 80%
Speed 80
aaa = P( 740, 0, 480, 180, 0, 180, -1 )
' Move to the aaa coordinate position at 50% traveling speed
Move P, aaa, Speed = 50
bbb = P( 500, -100, 400, 180, 0, 180, -1 )
' Move to the bbb coordinate position at 80% traveling speed
Move P, bbb
End Sub
ID : 215