Performances of the TSX CSY 164
(Original Document)
At a Glance
The performances of the module are:
NOTE: The Lexium carries out an interpolation every 250 μs.
SERCOS®® Cycle Time Selection Guide:
Test conditions:
NOTE: The performances shown were achieved under certain conditions guaranteeing a time buffer of approximately 25% of the SERCOS® CPU time. The Period of the MAST task is configured at 20ms. Transmission of the motion commands via MOVE_QUEUE is carried out once every 10 PLC cycles.
As a consequence,
A WRITE_PARAM command is sent during this time period, in order to carry out a parameter adjustment.
Modification of Cycle Time using a Program
(* change of the SERCOS® cycle time => %MW30 = 2000 or 3000 or 4000 *)
IF %M30 THEN %MW101.0.26:=2565;
%MD101.0.27:=%MW30;
IF NOT %MW101.0:X1 THEN
WRITE_CMD %CH101.0;
RESET %M30;
SET %M31;
END_IF;
END_IF;
(* transition into SERCOS® phase 0 *)
IF %M31 THEN %MW101.0.26:=2545;
%MD101.0.27:=0;
IF NOT %MW101.0:X1 THEN
WRITE_CMD %CH101.0;
RESET %M31;
SET %M32;
END_IF;
END_IF;
(* New transition into SERCOS® phase 4 *)
IF %M32 THEN %MW101.0.26:=2545;
%MD101.0.27:=4;
IF NOT %MW101.0:X1 THEN
WRITE_CMD %CH101.0;
RESET %M32;
END_IF;
END_IF;
(* Here, we can expect transition to phase 4 (OPCODE 550 result in %MD101.0.20) then acknowledge the fault caused by the transition to phase 0 *)