Hi!) Can you help me? How can I weld one long weld with multiple little welds? Like 50mm weld then 50 pass, 50 weld, 50 pass.......
Thx.
Hi!) Can you help me? How can I weld one long weld with multiple little welds? Like 50mm weld then 50 pass, 50 weld, 50 pass.......
Thx.
This is how I do it - my first program loops to call the weld program 14 times with a 31.75mm offset between each weld
1: R[1:Loop Counter]=0 ;
2: PR[2:Tab Weld]=LPOS ;
3: LBL[1] ;
4: R[1:Loop Counter]=R[1:Loop Counter]+1 ;
5:L PR[2:Tab Weld] 100mm/sec FINE ;
6: CALL W_TAB ;
7: PR[2,1:Tab Weld]=PR[2,1:Tab Weld]+31.75 ;
8: IF R[1:Loop Counter]<14,JMP LBL[1] ;
The weld program (W_TAB) stores LPOS to a PR, adds a 20mm offset, then welds to that PR.