Download Print this page

Mitsubishi Electric FX2N-4AD User Manual page 2

Special function block
Hide thumbs Also See for FX2N-4AD:

Advertisement

In buffer memory locations (BFMs) marked with an "*" data can be written from the PLC using the TO
instruction.
For buffer memories (BFMs) without "*" mark, data can be read by the PLC using the FROM instruction.
Before reading from the analog special function block, ensure that the appropriate settings have been sent
to the analog special function block. Otherwise, the previous values held in the analog block will be used.
The buffer memory also gives a facility to adjust the offset and gain via software.
Offset (intercept): The analog input value when the digital output becomes 0.
Gain (slope): The analog input value when the digital output becomes +1000.
1) Channel Selection
Channel selection is made by a 4 character HEX number HOOOO in buffer memory BFM #0.
The least significant character controls channel 1 and the 4th character controls channel 4.
Setting of each character is as follows:
O = 0: Preset range (-10V to +10V)
O = 2: Preset range (-20mA to +20mA)
O = 1: Preset range (+4mA to +20mA)
O = 3: Channel OFF
Example: H3310
CH1
: Preset range (-10V to +10V)
CH2
: Preset range (+4mA to +20mA)
CH3, CH4: Channel OFF
2) Analog to Digital Conversion Speed Change
By writing 0 or 1 to BFM #15 of the FX
-4AD, the speed at which A/D conversion is performed can be
2N
changed.
However the following points should be noted:
To maintain a high speed conversion rate, use the FROM/TO instructions as seldom as possible.
NOTE: When a conversion speed change is made, BFM #1-#4 are set to their default values
immediately after the change. This is regardless of the values they held originally. Bear this in
mind if a speed change will be made as part of the normal program execution.
3) Adjusting Gain and Offset values
a) When buffer memory BFM #20 is activated by setting it to K1, all settings within the analog special
function block are reset to their default settings. This is a very quick method to erase any
undesired gain and offset adjustments.
b) If (b1, b0) of BFM #21 is set to (1,0), gain and offset adjustments are prohibited to prevent
inadvertent changes by the operator. In order to adjust the gain and offset values, bits (b1, b0)
must be set to (0,1). The default is (0,1).
c) Offset and gain values of BFM #23 and #24 are sent respectively to the offset and gain resisters
in non-volatile memory of the specified input channels. Input channels to be adjusted are
specified by the appropriate G-O (gain-offset) bits of BFM #22.
Example:If bits G1 and O1 are set to 1, input channel 1 will be adjusted when BFM #22 is written
to by a TO instruction.
d) Channels can be adjusted individually or together with the same gain and offset values.
e) Offset and gain values in BFM #23 and #24 are in units of mV or m A. Due to the resolution of the
unit the actual response will be in steps of 5mV or 20 m A.
4) Status Information BFM #29
Bit devices of BFM #29
ON
When any of b1 to b4 is ON.
If any of b2 to b4 is ON, A/D
b0 : Error
conversion of all the channels is
stopped.
Offset/Gain data in the EEPROM
b1 : Offset/gain error
is corrupted or adjustment error.
b2 : Power source abnormality
24V DC power supply failure.
A/D converter or other hardware
b3 : Hardware error
failure.
Digital output value is less than
b10 : Digital range error
-2048 or more than +2047
Number of averaging samples is
b11 : Averaging error
4097 or more or 0 or less
(default of 8 will be used)
Prohibit-(b1, b0) of BFM #21 is
b12 : Offset/gain adjust prohibit
set to (1, 0)
NOTE:
b4 to b7, b9 and b13 to b15 are undefined.
5) Identification Code BFM #30
The identification (or ID) code number for a Special Function Block is read using the FROM
instruction.
This number for the FX
The user's program in the PLC can use this facility in the program to identify the special function block
before commencing data transfer from and to the special function block.
CAUTION
Values of BFM #0, #23 and #24 are copied to the EEPROM memory of the FX
BFM #21 and BFM #22 are only copied when data is written to the gain/offset command
buffer BFM #22. Also, BFM #20 causes the resetting of the EEPROM memory. The
EEPROM has a life of about 10,000 cycles (changes), so do not use programs which
frequently change these BFMs.
Due to the time needed to write to the EEPROM memory, a delay of 300 ms is required
between instructions that cause a write to the EEPROM.
Therefore, a delay timer should be used before writing to the EEPROM for a second time.
7. DEFINING GAIN AND OFFSET
Gain
+1,000
Digital
G ain de te r m ine s t he an gle or s lop e of th e
calibration line, identified at a digital value of 1000.
a) Small gain value: Large steps in digital
b) Zero gain value: default (5V or 20mA)
c) Large gain value: Small steps in digital
Offset and gain can be set independently or together. Reasonable offset ranges are -5V to +5V or -20mA
to +20mA, and gain value - offset value = 1V to 15V or 4mA to 32mA. Gain and offset can be adjusted by
software in the main unit (see program example 2)
Bit device's b1, b2 of the gain/offset BFM #21 should be set to 0, 1 to allow adjustment.
Once adjustment is completed these bit devices should be set to 1, 0 to prohibit any further changes.
OFF
8. EXAMPLE PROGRAM
8.1 Basic Program
No error
In the following example, channels CH1 and CH2 are used as voltage inputs. The FX
connected at the position of special function block No. 0. The number of averaged samples is set at 4 and
data registers D0 and D1 of the main unit receive the averaged digital data.
Offset/Gain data normal
M8002
Power supply normal
FROM
initial
pulse
Hardware Normal
CMP
Digital output value is normal.
M1
TO
P
Averaging is normal.
(between 1 and 4096)
Permit-(b1, b0) of BFM #21 is
TO
set to (0,1)
FROM K0
M10 M20
FROM K0
NO
Digital output
error
value is normal
-4AD Special Function Block unit is K2010.
2N
Offset
(a)
(b)
(d)
(e)
Digital
(c)
0
Offset value
Analog
Gain value
Analog
Offset is the 'Position' of the calibrated line,
identified at a digital value of 0.
d) Negative offset
readings
e) Zero offset: default (0V or 4mA)
f)
Positive offset
readings
The ID code for the special function block at position "0" is
K0
K30
D4
K1
read from BFM #30 of that block and stored at D4 in the main
unit.
This is compared with K2010 to check that the block is a
FX
-4AD, if OK M1 is turned ON. These two program steps
2N
K2010
D4
M0
are not strictly needed to perform an analog read. They are
however a useful check and are recommended as good
practice.
K0
K0
H3300 K1
The analog input channels (CH1, CH2) are setup by writing
H3300 to the BFM #0 of the FX
-4AD.
2N
The number of averaged samples for CH1 and CH2 is set to 4
K0
K1
K4
K2
by writing 4 to the BFM #1 and #2 respectively.
Do not execute the pulse form of the instruction.
The operational status of the FX
-4AD is read from BFM #29
2N
K29 K4M10
K1
and output as bit devices of the main unit.
If there are no errors in the operation of the FX
K5
D0
K2
the averaged data BFM's are read.
In the case of this example BFM #5 and #6 are read into the
main unit and stored in D0 and D1. These devices contain the
averaged data for CH1 and CH2 respectively.
8.2 Using gain and offset in a program
The following is an example of changing the offset value on input channel CH1 to 0V and the gain value to
2.5V.
The FX
-4AD block is in the position of block No. 0 (i. e. closest to the main unit).
2N
Example: Adjusting gain/offset by PLC programing
X010
SET
M0
-4AD.
TO
P
K0
K0
H0000 K1
2N
TO
P
K0
K21
K1
TO
P
K0
K22
K0
TO
TO
TO
P
K0
K23
K0
(f)
TO
P
K0
K24
K2500 K1
TO
P
K0
K22
H0003 K1
T1
T1
RST
TO
P
K0
K21
K2
9. DIAGNOSTICS
9.1 Preliminary checks
I.
Check whether the input wiring and/or extension cables are properly connected on the FX
analog special function block
II. Check that the PLC system configuration limits have not been exceeded, i. e. the number of special
function blocks, and the total system I/O are within the specified range.
III. Ensure that the correct operating range has been selected for the application.
IV. Check that there is no power overload on either the 5V or 24V power sources, remember the loading
on a main unit or a powered extension unit varies according to the number of extension blocks or
special function blocks connected.
V. Make sure that the main unit has been switched to RUN.
9.2 Error checking
If the FX
-4AD special function block does not seem to operate normally, check the following items.
2N
-4AD block is
Check the status of the POWER LED.
2N
Lit
:The extension cable is properly connected.
Otherwise :Check the connection of the extension cable.
Check the external wiring.
Check the status of the "24V" LED (top right corner of the FX
Lit
:FX
-4AD is OK, 24V DC power source is OK.
2N
Otherwise :Possible 24VDC power failure, if OK possible FX
Check the status of the "A/D" LED (top right corner of the FX
Lit
:A/D conversion is proceeding normally.
Otherwise :Check buffer memory #29 (error status). If any bits (b2 and b3) are ON, then this is why
the A/D LED is OFF.
Manual number : JY992D65201
-4AD, then
2N
Manual revision : C
Date
HEAD OFFICE : MITSUBISHI DENKI BLDG MARUNOUTI TOKYO 100-8310
HIMEJI WORKS : 840, CHIYODA CHO, HIMEJI, JAPAN
Adjustment start.
M0
(H0000) → BFM #0 (input channels selection)
(K1) → BFM #21
K1
BFM #21 (gain/offset prohibition) must be set to permission
with (b1, b0) = (0,1).
(K0) → BFM #22 (offset/gain adjustment)
K1
Reset adjustment bits.
K4
(K0) → BFM #23 (offset)
K1
(K2500) → BFM #24 (gain)
(H0003) → BFM #22 (offset/gain adjustment)
3 = 0011 i. e. O1 = 1, G1 = 1.
Channel 1 is adjusted.
K4
M0
End of adjustment.
(K2) → BFM #21
K1
BFM #21 gain/offset prohibition.
-4AD
2N
-4AD).
2N
-4AD failure.
2N
-4AD).
2N
: SEPTEMBER 2002
TELEX : J24532 CABLE MELCO TOKYO

Advertisement

loading