6 - 27
6 DriveProgramming Commands
DriveProgramming User’s Manual (I622-E1)
6-5 Arithmetic Operation and Logical Operation Commands
6
Example
/ (Division)
Command Description Argument
Divides <value 1> by <value 2>. Result: any variable
Value 1
: any variable or constant (range
−
128 to 127)
Value 2: any variable or constant
(range −2,147,483,648 to 2,147,483,647)
Format
Flowchart method Text language method
↓
<result> : = <value1> / <value2>
Note If an overflow, underflow, or division by zero occurs, the DriveProgramming detects it as an
error. Take necessary measures in the application so that they do not occur.
Flowchart Text
Block number
Operation
1 Assigns 2 to U(00).
2 Assigns 500 to U(01).
3 Assigns the quotient of U(01) and U(00) to U(02).
<result> : = <value1> / <value2>