Difference between revisions of "MC-Basic:robot.ARMFBK"

From SoftMC-Wiki
Jump to: navigation, search
m (Miborich moved page Axystems:MC-Basic:robot.ARMFBK to MC-Basic:robot.ARMFBK: Global renaming of Axystems: namespace into (Main):)
Line 10: Line 10:
  
 
|DESCRIPTION=
 
|DESCRIPTION=
Returns the actual (current) robot configuration. In SCARA  robots each Cartesian position can be obtained by two different angles of second joint.  These two solutions represent tow solution of the robots inverse kinematics equations, or in other words the robot configurations. Usually they are called “lefty” and “righty” robot configurations.  This flag indicates which of them is taken. Also, when this flag is different from the commanded one (armcmd) no straight line motion can be made.
+
Returns the actual (current) robot configuration. In '''SCARA ''' robots each Cartesian position can be obtained by two different angles of the second joint.  These two solutions represent two solutions of the robots inverse kinematics equations, or in other words the robot configurations. Usually they are called “lefty” and “righty” robot configurations.  This flag indicates which of them is taken. Also, when this flag is different from the commanded one (armcmd) no straight line motion can be made.
  
 
For example in SCARA kinematic model this flag is computed according to the sing of position of the second joint.<br>
 
For example in SCARA kinematic model this flag is computed according to the sing of position of the second joint.<br>
Line 40: Line 40:
 
|SEE ALSO=
 
|SEE ALSO=
 
* [[MC-Basic:robot.ARMCMD|robot.ARMCMD]]
 
* [[MC-Basic:robot.ARMCMD|robot.ARMCMD]]
 
 
 
}}
 
}}

Revision as of 15:40, 27 June 2014

Returns the actual (current) robot configuration. In SCARA  robots each Cartesian position can be obtained by two different angles of the second joint.  These two solutions represent two solutions of the robots inverse kinematics equations, or in other words the robot configurations. Usually they are called “lefty” and “righty” robot configurations.  This flag indicates which of them is taken. Also, when this flag is different from the commanded one (armcmd) no straight line motion can be made.

For example in SCARA kinematic model this flag is computed according to the sing of position of the second joint.
                   j2.pfb > 0 -> Lefty
                   j2.pfb = 0 -> Undefined(Auto)
                   j2.pfb < 0 -> Righty

Short form

<ROBOT>.afbk

Syntax

?<ROBOT>.armfbk

Type

Long

Range

0 (undefined)/ 1(lefty)/ 2 (Righty)

Scope

Configuration, Task, Terminal

Limitations

Read Only, Modal Only

Examples

?scara.armfbk

See Also