Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Search Linear
#3
The integration with your robot depends on the controller you have. Linear search requires customizing the robot driver to intercept the search movement and link the stop condition to a specific signal. You can also use a customized post processor.

What robot are you using?

For example, if you have a Fanuc robot you'll see a program called go_mls.ls (MoveL Search) as part of the robot driver setup. This program looks like this:

1: SKIP CONDITION DI[101]=ON ;
2: IF R[51]>=0,JMP LBL[10] ;
3:L PR[50] R[50]mm/sec FINE Skip,LBL[50] ;
4: PR[52]=JPOS ;
5: END ;
6: LBL[10] ;
7:L PR[50] R[50]mm/sec CNT R[51] Skip,LBL[50] ;
8: PR[52]=JPOS ;
9: END ;
10: LBL[50] ;
11: PR[52]=PR[50] ;

In this example, the search is stopped by the "Skip condition" DI[101]=ON. You can modify that line to match the DI of your choice. The final position is saved in the position register PR[52]. This can also be customized.


Messages In This Thread
Search Linear - byNox- 10-22-2018, 09:04 AM
RE: Search Linear - byJeremy- 10-24-2018, 06:42点
RE: Search Linear - byAlbert- 10-24-2018, 07:05 PM
RE: Search Linear - byNox- 10-29-2018, 02:06 PM
RE: Search Linear - byDaniel- 12-26-2019, 07:50 PM
RE: Search Linear - byAlbert- 10-31-2018, 10:56 AM
RE: Search Linear - byAlbert- 12-30-2019, 03:38 PM
RE: Search Linear - byPiotrekP- 03-29-2023, 06:27 AM
RE: Search Linear - bySergei- 03-29-2023, 07:24 AM
RE: Search Linear - byPiotrekP- 03-29-2023, 08:48 AM
RE: Search Linear - byAlbert- 03-29-2023, 09:34 AM



Users browsing this thread:
1 Guest(s)