Hi,
The PTP speed in T1 mode on the KSS 8.7 is unbearably slow.
How slow? Well let me tell you with the speed test example I run on two systems.
From Y -300 to Y 400 so a 700 mm running distance and measured the time in T1 mode while at 100% speed on the Teach Pendent.
System 1:
KSS 8.6.4
KR C4 Compact
KR10 R1100 Agilus 2 robot (A six axis one)
System 2:
KSS 8.7.4
KR C5 Micro
KR6 R700 Z200 (A four axis scara robot)
&ACCESS RVO1
&COMMENT
DEF T1_SpeedTest ( )
BAS(#INITMOV,0)
PTP XHOME
;TEST PTP SPEED
;=========================
SPTP {X 500, Y -300, Z 180}
WAIT SEC 0
;Start Timer
$TIMER_STOP[ 1 ] = TRUE
$TIMER[ 1 ] = 0
$TIMER_STOP[ 1 ] = FALSE
PTP {X 500, Y 400, Z 180}
;Stop Timer
WAIT SEC 0 ;For advance run to not stop the timer prematurely.
$TIMER_STOP[ 1 ] = TRUE
;TEST SPTP SPEED
;=========================
SPTP {X 500, Y -300, Z 180}
WAIT SEC 0
;Start Timer
$TIMER_STOP[ 2 ] = TRUE
$TIMER[ 2 ] = 0
$TIMER_STOP[ 2 ] = FALSE
SPTP {X 500, Y 400, Z 180}
;Stop Timer
WAIT SEC 0 ;For advance run to not stop the timer prematurely.
$TIMER_STOP[ 2 ] = TRUE
;TEST LIN SPEED
;=========================
SPTP {X 500, Y -300, Z 180}
WAIT SEC 0
;Start Timer
$TIMER_STOP[ 3 ] = TRUE
$TIMER[ 3 ] = 0
$TIMER_STOP[ 3 ] = FALSE
LIN {X 500, Y 400, Z 180}
;Stop Timer
WAIT SEC 0 ;For advance run to not stop the timer prematurely.
$TIMER_STOP[ 3 ] = TRUE
END
Display More
The results.
System 1 (KSS 8.6.4)
PTP time: 9,684 sec
SPTP time: 3,852 sec
LIN time: 5760 sec (Path was close to singularities so slower then necessary)
System 2 (KSS 8.7.4)
PTP time: 47,508 sec
SPTP time: 3,744 sec
LIN time: 5,964 sec
This is nor normal and causes the programmer to test the programs in other modes which is not a safe way to avoid collisions.
Its over ten times slower than SPTP. Why?
Considering this was a 700mm Point to point distance... the speed was 14,7 mm/sec ...
The speed in T1 should be limited to 250mm/s
What is going on?