Transfer 32 bit floating point to 16 bit integer via Modbus TCP/IP

Modbus AOI (and I believe the old application) supports only local EN2T module.
ControlNet bridging is not supported.
While Logix messaging supports bridging, this AOI uses sockets that works with Local Modules.


There is the answer OP has been looking for: they cannot use Modbus TCP protocol via an EN2T card on a remote rack.
 
Thanks. So can you guys give some advice,
1, Whats type of module can I use to connect controllogix PLC L73 to Vaisala system. The vaisala already tested by modsim TCP/IP
2, How to read data from vaisala
 
Something to bridge/tunnel/relay/proxy between whatever LAN the Ethernet module in the L73's local chassis and the LAN the Vaisala is one, might do the job.

It's not trivial, but not complicated either, e.g. a RaspberryPI with two ethernet ports could do it, but I suspect some vendor (Cisco?) must have a box to do this kind of thing.
 
In Logix, either copy them:
COP myInt16Array[0] MyReal 1

Or byteswap and then copy:
MOV myInt16Array[0] myTempInt16Swap[1]
MOV myInt16Array[1] myTempInt16Swap[0]
COP myTempInt16Swap[0] MyReal 1


This is correct and you do not need any AOI to do this. As drbitboy pointed out, you will need a Modbus gateway. I recommend either Spectrum Control Universal Gateway or RTA Automation's gateway.
 
Finally, we need transfer signal from QML201 datalogger (Vaisala) to Toshiba DCS. Vaisala TA say they only can transfer 32 floating point bit and Toshiba DCS TA say they only can receive 16bit int. So anyone can help me to find some solution to solve this issue.
 
1) as a test, can you use the Modbus protocol to transfer a 16-bit value from Vaisala to the Toshiba?
2) does the Toshiba DCS operating system have a 32-bit floating-point data type?
2.1) if not, how do you intend to represent the 32-bit floating point value from the Vaisala as a 16-bit integer value?
3) Can you provide links to user manuals (PDF, typically) that explain what the devices can do?

_
 

Similar Topics

Hi all, I was under the impression that Load and Transfer operate independantly of the RLO ? If this is the case the following code shouldn't...
Replies
10
Views
9,112
I have an RIO network consisting of a 1747-SN, two 1749-ASB's with 48IO each, and a 1791-IOBX with 64IO. I have a steady green COM light on all...
Replies
9
Views
3,569
hi all PLC experts, im now doing a project where i have limited input terminals. so i tried to reduced the usage of input terminals in operation...
Replies
2
Views
2,374
I'm trying to verify a project with a PLC. The Transfer Setup menu item is grayed out and every time I click Verify with PLC, I get an error...
Replies
1
Views
53
Hello, I need to create an automatic transfer panel that connects to the generator when the mains power is cut. I can draw up to 60kW and draw up...
Replies
0
Views
84
Back
Top Bottom