Difference between revisions of "MC-Basic:element.VELOCITYOVERRIDE"

From SoftMC-Wiki
Jump to: navigation, search
(new page)
 
(new page)
 
Line 1: Line 1:
{{Languages}}
+
{{Languages|MC-Basic:element.VELOCITYOVERRIDE}}
 
{{MC-Basic
 
{{MC-Basic
 
|SHORT FORM=
 
|SHORT FORM=
Line 35: Line 35:
  
 
|EXAMPLE=
 
|EXAMPLE=
''G1''.VelocityOverride=20          
+
''G1''.VelocityOverride=20             ‘Set VORD to 20%
:::::‘Set VORD to 20%
 
  
 
|SEE ALSO=
 
|SEE ALSO=
 
* [[MC-Basic:element.VELOCITYCRUISE|VELOCITYCRUISE]]
 
* [[MC-Basic:element.VELOCITYCRUISE|VELOCITYCRUISE]]
* [[MC-Basic:system.VELOCITYOVERRIDE|system.VELOCITYOVERRIDE]]
+
* [[MC-Basic:SYSTEM.VELOCITYOVERRIDE|SYSTEM.VELOCITYOVERRIDE]]
  
  
 
}}
 
}}

Latest revision as of 11:53, 5 July 2017

Language: English  • 中文(简体)‎

VELOCITYOVERRIDE modifies the actual element velocity by multiplying the velocity by the specified override value. Unlike other motion properties, it takes effect immediately. The actual velocity rate of change is limited by the axis deceleration value. the SYSTEM.VELOCITYOVERRIDE also affects the actual element velocity, and functions as an additional multiplier. Changing VELOCITYOVERRIDE takes 4 cycles (if the axis is moving), and delays the task execution by this amount of time. The axis velocity override has no effect when the axis is being moved as part of a group.

NOTE-Info.svgNOTE
VELOCITYOVERRIDE does not effect a slave axis as it is not moved via the profile generator.

Short form

<element>.Vord

Syntax

<element>.VelocityOverride = <value>

Availability

All versions

Type

Double

Range

0.1 to 100000

Units

Percent

Default

100

Scope

Task or Terminal

Limitations

  • write only
  • Actual velocity rate of change is limited by the axis deceleration value.

Examples

G1.VelocityOverride=20 ‘Set VORD to 20%

See Also