Справочник Пользователя для Mitsubishi Electronics MELSEC -Q/L

Скачать
Страница из 1086
APPENDICES
Appendix 3  Application Program Examples
1071
A
Appendix 3
Application Program Examples
Concept of programs which perform operations of a nth power of 
X, a nth root X
The combination of the LOG instruction and the EXP instruction enables the operation of powers and roots (X
n
n
X).
Concept of programs which perform operations of X
n
X
n
 can be operated using e
(nlogeX)
.
For example, the operation of 10
1.2
 is e
(1.2
loge10)
, which is represented in the form of a sequence program as shown below.
Concept of program which performs operation of 
n
X
n
X can be operated using 
.
For example, the operation of 
3
10 is 
, which is represented in the form of a sequence program as shown below.
Converts 10 into a real number format data 
and stores the result in D0 and D1.
Executes Loge10 operation and stores the 
result in D2 and D3.
Converts 12 into a real number format data  
and stores the result into D4 and D5.
Divides D4 and D5 (12) by D0 and D1 (10), 
and stores the result (1, 2) in D6 and D7 (1, 2).
Multiplies D2 and D3 (Loge10) by D6 and 
D7 (1, 2) and stores the result in D8 and D9.
Executes Loge(D8, D9) operation and stores 
the result in D10 and D11.
n
1
e
)
eX
log
 
(
(
 
log
e
10)
e
1
3
Converts 10 into a real number format data 
and stores the result in D20 and D21.
Executes Loge10 operation and stores the 
result in D22 and D23.
Converts 3 into a real number type data 
and stores the result in D24 and D25.
Divides D22 and D23 (Loge10) by D24 and 
D25 (3) and stores the result in D26 and D27.
Executes Loge(D26, D27) operation and 
stores the result in D28 and D29.