Difference between revisions of "AXY:MC-Basic:group.BLENDINGMETHOD"

From SoftMC-Wiki
Jump to: navigation, search
Line 67: Line 67:
  
 
|SEE ALSO=
 
|SEE ALSO=
* [[Axystems:MC-Basic:group.BLENDINGFACTORERROR! REFERENCE SOURCE NOT FOUND.|group.BLENDINGFACTORERROR! REFERENCE SOURCE NOT FOUND.]]
+
* [[Axystems:MC-Basic:group.BLENDINGFACTOR |BLENDINGFACTOR]]
* [[Axystems:MC-Basic:ERROR! REFERENCE SOURCE NOT FOUND.|ERROR! REFERENCE SOURCE NOT FOUND.]]
+
 
 +
* [[Axystems:MC-Basic:group.CP |CP]]
  
  
 
}}
 
}}

Revision as of 12:27, 20 March 2011

Selects which blending method (algorithm) is to be used.

  • 0 – no blending
  • 1 – CP
  • 2 – superposition used
  • 3 – PASS active


When Blending Method is set to 3 only MOVE, MOVES and PASS motion commands are allowed and either MOVE or MOVES depending on the current value of PassInterpolation. The pass-interpolation can not be activated (BlendingMethod assigned to 3) if there is currently executing motion.


Note that by changing BlendingMethod value from 3 to any other (0,1,2) clears all previously stored points of AI path.


Continues path or CP method is very useful blending method in cases where continuity and velocity smoothness are required . In CP blending method user can be assured that maximum space velocities will never been exceeded. More than that the originally given path will be always followed. In this method the segments middle point will be always part of the blended path. Only two consecutive motions can be blended together. This presents the distance from the target point on which the blending (second motion) begins. The system automatically limits this value to the half of the segments length.

The fast – superposition blending allows user to blend motions at any point of time starting from initial point of the movement up to the target. This blending mode is not limited by the combined actions of the two motions. Therefore, it is the sole responsibility of the user not to blend together motions that in combination produce velocities or accelerations out of allowed system limits. An additional feature is the blending ability to swap movements when the second is finished before the first, in this case we have continuous blending of the first and the third movement.

Syntax

? <group>.BlendingMethod
<group>.BlendingMethod  = <value>

Availability

Versions AMCS 0.3.6.20 and higher

Type

Long

Range

0 ,1 ,2,3

Default

1

Scope

Task or Terminal

Limitations

The combination of CP <> 0 and FINAL VELOCITY <> 0 is not  allowed.

(unless bmethod=1 and cp=0 or bmethod=2 and bfactor =100).

In case of AI (PASS command):

●         If other motion commands are entered (CIRCLE) an error will be returned and the command will be not executed.

●         If modal value of starttype is set to immediate or super immediate an error will be returned.

Example             Group1. BlendingMethod = 1

See Also