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

From SoftMC-Wiki
Jump to: navigation, search
(Created page with "{{Languages|MC-Basic:element.ASCALE}} {{MC-Basic |SHORT FORM= <''element''>.Ascale |SYNTAX= <''element''>.AScale = <''expression''><br> ?<''element''>.AScale |AVAILABILITY=...")
 
Line 12: Line 12:
  
 
|DESCRIPTION=
 
|DESCRIPTION=
This property specifies percentage of desired acceleration and deceleration compared to maximal possible velocity for this type of movement. The motion generator attempts to reach this velocity during motion commands. The ability of the motion generator to reach this value is constrained by the value of ACCELERATION, DECELERATION, SMOOTHFACTOR and the final position. This properties used inside a motion command to override the permanent value.
+
This property specifies percentage of desired acceleration and deceleration compared to maximal possible velocity for this type of movement. The motion generator attempts to reach this velocity during motion commands. The ability of the motion generator to reach this value is constrained by the value of ACCELERATION, DECELERATION, SMOOTHFACTOR and the final position. This properties used inside a motion command to override the permanent value.
  
 
Active only when [[MC-Basic:element.velocitysettings|VelocitySettings]] is set to 1.
 
Active only when [[MC-Basic:element.velocitysettings|VelocitySettings]] is set to 1.
Line 46: Line 46:
 
|SEE ALSO=
 
|SEE ALSO=
 
* [[MC-Basic:ATTACH|ATTACH]]
 
* [[MC-Basic:ATTACH|ATTACH]]
* [[MC-Basic:element.VELOCITYCRUISE|VELOCITYCRUISE]]
+
* [[MC-Basic:element.VELOCITYSCALE|VELOCITYSCALE]]
  
  
 
}}
 
}}

Revision as of 09:54, 30 March 2020

Language: English

This property specifies percentage of desired acceleration and deceleration compared to maximal possible velocity for this type of movement. The motion generator attempts to reach this velocity during motion commands. The ability of the motion generator to reach this value is constrained by the value of ACCELERATION, DECELERATION, SMOOTHFACTOR and the final position. This properties used inside a motion command to override the permanent value.

Active only when VelocitySettings is set to 1.

Short form

<element>.Ascale

Syntax

<element>.AScale = <expression>
?<element>.AScale

Type

Double

Range

0.1 ... 100

Units

percentage

Default

100%

Scope

Task or Terminal

Limitations

To set the value within a task, the element must be attached to that task (using the ATTACH command).

Examples

Axis
A1.AScale =30
Move A1 TargetPos Ascale = 20

Group
G1.AScale =40
Move G1 {100, 200} Ascale = 22

See Also