Specifications
Table Of Contents
- Coverpage
- Safety Instructions
- Revision History
- Contents
- Introduction
- 1 Outline
- 2 Explanation of Functions
- 3 Q-PLC Multi-CPU
- 4 Q Motion CPU
- 5 SFC Program
- 6 SV22 Servo Programs
- 6.1 Servo program
- 6.1.1 Servo program configuration
- 6.1.2 List of servo commands
- 6.1.3 Linear control
- 6.1.4 Circular interpolation control using auxiliary point designation
- 6.1.5 Circular interpolation control using radius designation
- 6.1.6 Circular interpolation control using center point designation
- 6.1.7 Fixed-dimension feed control
- 6.1.8 Speed control
- 6.1.9 Speed/position changeover control
- 6.1.10 Speed changeover control
- 6.1.11 Constant-speed control
- 6.1.12 Repeated control (for speed changeover control and uniform speed control)
- 6.1.13 Simultaneous start
- 6.1.14 Zero point return
- 6.1.15 Position follow-up control
- 6.1.16 High-speed oscillation control
- 6.1.17 Helical interpolation control with auxiliary point designated
- 6.1.18 Helical interpolation control with radius designated
- 6.1.19 Helical interpolation control with center point designated
- 6.1.20 Current value change
- 6.1 Servo program
- 7 Operation Control Program
- 8 Windows Personal Computer Operations
- 9 Basic Practice Using the SV22 Real Mode
- 10 Applied Practice with SV22 Real Mode
- 10.1 Details of practice
- 10.2 Q172CPU practice machine system configuration
- 10.3 Practice SFC programs
- 10.4 Writing to the motion CPU
- 10.5 Program for operation
- 10.5.1 JOG operation
- 10.5.2 Main routine SFC program (real mode operation)
- 10.5.3 Execution of servo program (motion control step)
- 10.5.4 Stopping
- 10.5.5 Error reset
- 10.5.6 Current value change
- 10.5.7 Speed change (CHGV)
- 10.5.8 Reading actual current value
- 10.5.9 Continuous positioning
- 10.5.10 M code function
- 10.5.11 Indirect setting of servo program address
- 10.6 Operating the practice machine
- 11 Practicing with the SV22 Virtual Mode
- 11.1 Mechanism program
- 11.2 Details of practice
- 11.3 Starting up SW3RN-CAMP and creating the cam
- 11.4 SFC program for virtual mode
- 11.5 Editing the mechanism
- 11.6 Writing to the motion CPU
- 11.7 Reading of sequence program from Q-PLC CPU
- 11.8 SFC program for practice
- 11.9 Practice machine operations
- 11.10 Exercise (Roller setting)
- Appendix

10 - 30
10.5.8 Reading actual current value
The monitor data includes D0 to D159 stored in the actual current value storage register
(shown below). Consequently, a read program does not need to be created.
Axis 1
Axis 2
Axis 3
Axis 4
Axis 5
Axis 6
Axis 7
Axis 8
D2 D22 D42 D62 D82 D102 D122 D142
Actual current
value
D3 D23 D43 D63 D83 D103 D123 D143
Example SFC program and sequence program used to output the actual current
value of axis 1 and axis 2 to the digital display unit (controlled by Q-PLC
CPU) in [mm] units
(1) SFC program
SFC program No. 70
Reading of actual current value
The current value (D2) [0.1µm]
of axis 1 is converted into a mm
unit value to stabilize the 1st
digit display.
The current value [mm] is stored
in D6004 set by automatic refresh.
The current value (D22) [0.1µm]
of axis 2 is converted into a mm
unit value to stabilize the 1st
digit display.
The current value [mm] is stored
in D6006 set by automatic refresh.
G700 G702
[Transition]
D4016L=D2L/K10000
D4014L=D4016L%K10
(K0==D4014L)*(K0<=D4016L)
D4020L=D22L/K10000
D4018L=D4020L%K10
(K0==D4018L)*(K0<=D4020L)
F700 F701
[Operation control
step]
D6004L=D4016L D6006L=D4020L
D3, D2 : Axis 1 actual current value storage register
D23, D22 : Axis 2 actual current value storage register
D6004, D6005 : Axis 1 actual current value (Automatic refresh setting device)
D6006, D6007 : Axis 2 actual current value (Automatic refresh setting device)
REFERENCE
Since the actual current value is stored as a 32-bit data in [0.1µm] unit, it is divided
by 10,000 to convert into a [mm] unit.










