Difference between revisions of "SCARA J1 range"

From SoftMC-Wiki
Jump to: navigation, search
(first)
 
(theta)
Line 2: Line 2:
  
  
Default (basic) range of the first joint angle of SCARA Manz (Bosch) robot is (-90,270) for the UniVal SCARA robot the range should be (-180,+180), therefore a theta parameter was added. It is used for the first joint only. Its default value is 90 so the basic range of J1 angles is: <math>(-180 + theta_i, +180 + theta_i)</math>
+
Default (basic) range of the first joint angle of SCARA Manz (Bosch) robot is (-90,270) for the UniVal SCARA robot the range should be (-180,+180), therefore a theta parameter was added. It is used for the first joint only. Its default value is 90 so the basic range of J1 angles is: <math>(-180 + \theta_i, +180 + \theta_i)</math>
  
 
<pre>
 
<pre>
Line 15: Line 15:
 
import_c SCARA_SET_THETA(byval as long, byval as long,byval as double) as double
 
import_c SCARA_SET_THETA(byval as long, byval as long,byval as double) as double
 
</pre>
 
</pre>
 
  
 
== Return Value ==
 
== Return Value ==

Revision as of 09:01, 20 September 2010

Theta parameter for SCARA model

Default (basic) range of the first joint angle of SCARA Manz (Bosch) robot is (-90,270) for the UniVal SCARA robot the range should be (-180,+180), therefore a theta parameter was added. It is used for the first joint only. Its default value is 90 so the basic range of J1 angles is:


	double SCARA_GET_THETA(int hndl, int i);
	double SCARA_SET_THETA(int hndl,int i, double value);

do not forget to add in your PROTO.PRO file:

import_c SCARA_GET_THETA(byval as long, byval as long) as double
import_c SCARA_SET_THETA(byval as long, byval as long,byval as double) as double

Return Value

In case of an error (not a SCARA model or invalid index) both functions are returning -1


The SCARA_SET_THETA returns 1 if everything is OK.

To Be Done

Make it available as regular property


Availability

from 4.5.24 and above

--Miborich 14:13, 1 July 2010 (CEST)