Chapter 5 Instruction Words
5 - 42
Variable name Range of values Default Unit Data size Attribute
Vout
Output voltage
monitoring
0 to 6000 - 0.1 V
Unsigned
1-word data
Readable
- Explanation
This variable can be used to monitor the inverter output voltage. The data monitored with this variable
corresponds to the data monitored by the output voltage monitoring function (d013). This variable is
read-only.
- Sample program: Program to turn a contact output on when output voltage exceeds 200 V
(Code area [Code Window])
:
LOOP if Vout >= U(00) then SKIP
Y(00)= 1
SKIP goto LOOP
:
(Data area [Data Window])
U(00) = 2000 :200V
Variable name Range of values Default Unit Data size Attribute
Power
Power
monitoring
0 to 9999 - 0.1 kW
Unsigned
1-word data
Readable
- Explanation
This variable can be used to monitor power input to the inverter. The data monitored with this variable
corresponds to the data monitored by the power monitoring function (d014). This variable is read-only.
- Sample program: Program to output a signal when input power is lower than the specified minimum
limit or higher than the specified maximum limit
(Code area [Code Window])
:
LOOP if Power < U(10) then LBL1
if Power > U(11) then LBL2
goto LBL3
LBL1 Y(00)= 1
goto LBL3
LBL2 Y(02)= 1
LBL3 goto LOOP
:
(Data area [Data Window])
U(10) = 55 : U (10) = 55: Set input power of 5.5 kW in variable "U (10)".
U(11) = 110 : U (11) = 110: Set input power of 11 kW in variable "U (11)".