IBHLink S7++:PLC-PLC communication

From IBHsoftec Wiki English
Jump to: navigation, search

Ethernet to MPI / PROFIBUS

Ethernet MPICP diagram.png

Requirements:
- SIMATIC Manager
- IBH Link S7++ / HS with Firmware >= 2.142
- CPU with MPI or PROFIBUS Interface
- CPU with Ethernet onboard or Ethernet CP. The Interface must support S7 connections. It can be checked within the hardware properties: S7 connection active (Server means passive).


Download: STEP7 Sample: Ethernet to MPI/PROFIBUS

Active:
EthernetMPICPaktiv.png

Passive:
EthernetMPICPpassiv.png

Within NetPro the CPU must be connected with the Ethernet. An unspecified connection needs to be created:
EthernetMPIS7connection.png

To access several CPUs accordingly, several S7 connections need to be configured. The connection ID is relevant for the call of the FBs/SFBs. If the amount of CPUs exceeds the amount of possible S7 connections, Ethernet to PROFIBUS via PROFIBUS CP (Multiplexing) can be chosen.

Within the properties of the S7 connection the IP address of the IBH Links must be entered:
EthernetMPIS7connection2.png

Within the Address Details enter the MPI address of the destination CPU.
EthernetMPIS7connection3.png

The communication will be established usings the blocks FB14/FB15. There are different FB14/FB15 available. Depending if a CPU with onboard Ethernet or a CPU with Ethernet CP is used, the correct set of blocks must be chosen, otherwise there will be no data exchange.
CPU with onboard Ethernet = Standard Library
CPU with Ethernet CP = SIMATIC_NET_CP
FB14.png

Sample:

     CALL  "GET" , DB14
      REQ   :=M0.0                     //Start reading with positive edge
      ID    :=W#16#1                   //S7 connection ID configured within NetPro
      NDR   :=M0.1                     //Job status 
      ERROR :=M0.2                     //ERROR flag
      STATUS:=MW2                      //STATUS infomation(Siemens documentation)
      ADDR_1:=P#M 10.0 BYTE 20         //Source address connected CPU
      RD_1  :=P#M 10.0 BYTE 20         //Destination address local CPU

Depending on the type of CPU the correct set of blocks, FB14/15 or SFB14/15 must be chosen. The final step is to tranfer the S7 program and the system data to the CPU.

Ethernet to PROFIBUS via PROFIBUS CP (Multiplexing)

S7 connection CP diagram.png

Requirements:
- SIMATIC Manager
- IBH Link S7++/IBH Link S7++ HS with Firmware >= 2.142
- CPU with PROFIBUS CP
- CPU with Ethernet onboard or Ethernet CP. The Interface must support S7 connections. It can be checked within the hardware properties: S7 connection active (Server means passive).


Download: STEP7 Sample: Ethernet to PROFIBUS via PROFIBUS-CP

Active:
EthernetMPICPaktiv.png

Passive:
EthernetMPICPpassiv.png

Within NetPro the CPU must be connected with the Ethernet. An unspecified connection needs to be created:
EthernetMPIS7connection.png

Within the properties of the S7 connection the IP address of the IBH Links must be entered:
EthernetMPIS7connection2.png

Within the address details as Rack and Slot a special ID for IBH Link Routing must be entered: Rack 7, Slot 31
EthernetMPIS7connectionCP.png

Establish connection via FB/SFB 15 (PUT)
To establish a connection over a PROFIBUS-CP with an IBH Link S7++, more connection information is required, than NetPro permits to enter. For this reason the IBH Link S7++ can be set into the projected mode. That mode permits sending the required connection information with a call to the "PUT" block as a data structure. To set this mode, only a special ID must be entered in NetPro.

Create OB1:
Within the first network the SFB15 is called to handover the parameters. Within the second network the SFB15 for the data exchange is called.
OB1.png

CALL "PUT" , DB15

      REQ   :=M0.0                     //Start reading with positive edge 
      ID    :=W#16#1                   //S7 connection ID configured within NetPro
      DONE  :=M0.1                     //Job status 
      ERROR :=M0.2                     //ERROR flag
      STATUS:=MW2                      //STATUS infomation(Siemens documentation)
      ADDR_1:=P#DB65535.DBX 224.0 BYTE 8    //IBH Link S7++ ID for PROFIBUS connection.

With this ID the IBH Link S7++ gets the needed information for the connenction.

      ADDR_2:=
      ADDR_3:=
      ADDR_4:=
      SD_1  :="PLC_CONNECTION_RECORDS".Connection[0]
      SD_2  :=
      SD_3  :=
      SD_4  :=

"PLC_CONNECTION_RECORDS" – Symbolic name of the DB, which contains the parameters for the connection. Connection[0] – Pointer to the start address within the DB, which contains the parameters for the connection. If the DB contains more than one connection, they can be selected via this parameter and access to several CPUs is possible.

CALL SFB 14 , DB14

      REQ   :=M10.0                    //Start reading with positive edge
      ID    :=W#16#1                   //S7 connection ID configured within NetPro
      NDR   :=M10.1                    //Job status
      ERROR :=M10.2                    //ERROR flag
      STATUS:=MW20                     //STATUS infomation(Siemens documentation)
      ADDR_1:=P#M 10.0 BYTE 20         //Source address connected CPU
      ADDR_2:=
      ADDR_3:=
      ADDR_4:=
      RD_1  :=P#M 10.0 BYTE 20         //Destination address local CPU
      RD_2  :=
      RD_3  :=
      RD_4  :=

Depending on the type of CPU the correct set of blocks, FB14/15 or SFB14/15 must be chosen.

A DB is needed, which contains the parameters for the connection.

DB.png

The parameters MPI address, Slot- and Rack No. are used. Entering an IP address is not needed using this kind of connection. If several connections are used, it is recommended to use UDTs.

MPI – Ethernet – MPI without projected configuration / MPI – Ethernet/MPI – IBH Link S5++

S7connection diagram.png
S7 connection Multi diagram.png
S7 connection S5 diagram.png

Requirements
- SIMATIC Manager or S7 for Windows® from IBHsoftec
- 2 x IBH Link S7++/IBH Link S7++ HS with Firmware >= 2.142
- The operating system of the CPU must contain the blocks XPUT and XGET (SFC67, SFC68). The information, whether the CPU contains these blocks can be gathered from the Siemens CPU documentation.

For this type of connection, a projected configuration with NetPro is not necessary. Within the PLC program, the blocks XPUT/XGET are called to establish a connection from one IBH Link S7 to the next IBH Link. For very comfortable configuration of the communication parameters, the blocks XPUT_IBH and XGET_IBH (developed by IBHsoftec) are available and can be found within the sample.


Download: STEP7 Sample: MPI – Ethernet – MPI without projected configuration

Block call.png

CALL FB 67 , DB67

      REQ         :=M10.0              //Start reading with positive edge
      DEST_ID     :=0                  //Pointer within parameter DB
      DB_PARA     :=100                //No. of parameter DB
      IBHLINK_ADDR:=B#16#0             //MPI Address source IBH Link
      SRC_ADDR    :=P#M 100.0 BYTE 20  //Location of data in the destination CPU
      DST_ADDR    :=P#M 100.0 BYTE 20  //Location of data in the local CPU
      RESULT      :=MW2                //STATUS infomation
      BUSY        :=M3.0               //Job status

The information for the IBH Link on how to reach the destination CPU are stored within the parameter DB.

DB 100.png

Rack and Slot No are 0 when using MPI. The parameters for S5 conenctions using the IBH Link S5++ are:

Destination IP address IP address of the IBHLink S5++
Destination MPI address 2
Destination Rack 0
Destination Slot 0

MPI – Ethernet – MPI with S7 conection (projected) / MPI – Ethernet / MPI – IBH Link S5++

S7connection diagram.png
S7 connection Multi CP diagram.png
S7 connection S5 diagram.png

Requirements
- SIMATIC Manager - 2 x IBH Link S7++/IBH Link S7++ HS with Firmware >= 2.142
- CPU with MPI Interface
- Interface has to support S7 connections


Download: STEP7 sample: MPI – Ethernet – MPI with S7 connection (projectet)


Within NetPro the CPU must be connected with the Ethernet. An unspecified connection needs to be created:
S7connection 400.png

Within the properties of the S7 connection the IP address of the IBH Links must be entered:
S7connection properties.png

Establish connection via FB/SFB 15 (PUT)
To establish a connection with an IBH Link S7++, more connection information is required, than NetPro permits to enter. For this reason the IBH Link S7++ can be set into the projected mode. That mode permits sending the required connection information with a call to the "PUT" block as a data structure. Another reason to use this connection is, if data needs to be exchanged with several CPU.

Create OB1:

Within the first network the SFB15 is called to handover the parameters. Within the second network the SFB15 for the data exchange is called. OB1.png

CALL "PUT" , DB15

      REQ   :=M0.0                     //Start reading with positive edge 
      ID    :=W#16#1                   //S7 connection ID configured within NetPro
      DONE  :=M0.1                     //Job status 
      ERROR :=M0.2                     //ERROR flag
      STATUS:=MW2                      //STATUS infomation(Siemens documentation)
      ADDR_1:=P#DB65535.DBX 224.0 BYTE 8    //IBH Link S7++ ID for PROFIBUS connection.

With this ID the IBH Link S7++ gets the needed information for the connenction.

      ADDR_2:=
      ADDR_3:=
      ADDR_4:=
      SD_1  :="PLC_CONNECTION_RECORDS".Connection[0]
      SD_2  :=
      SD_3  :=
      SD_4  :=

"PLC_CONNECTION_RECORDS" – Symbolic name of the DB, which contains the parameters for the connection. Connection[0] – Pointer to the start address within the DB, which contains the parameters for the connection. If the DB contains more than one connection, they can be selected via this parameter and access to several CPUs is possible.

CALL SFB 14 , DB14

      REQ   :=M10.0                    //Start reading with positive edge
      ID    :=W#16#1                   //S7 connection ID configured within NetPro
      NDR   :=M10.1                    //Job status
      ERROR :=M10.2                    //ERROR flag
      STATUS:=MW20                     //STATUS infomation(Siemens documentation)
      ADDR_1:=P#M 10.0 BYTE 20         //Source address connected CPU
      ADDR_2:=
      ADDR_3:=
      ADDR_4:=
      RD_1  :=P#M 10.0 BYTE 20         //Destination address local CPU
      RD_2  :=
      RD_3  :=
      RD_4  :=

Depending on the type of CPU the correct set of blocks, FB14/15 or SFB14/15 must be chosen.

A DB is needed, which contains the parameters for the connection.

DB.png


The parameters MPI address, Slot- and Rack No. are used. Entering an IP address is not needed using this kind of connection. If several connections are used, it is recommended to use UDTs.

The parameters for S5 conenctions using the IBH Link S5++ are:

Destination IP address IP address of the IBHLink S5++
Destination MPI address 2
Destination Rack 0
Destination Slot 0

Connection via IBH Link in routing mode

Requirements
- SIMATIC Manager - IBH Link S7++/IBH Link S7++ HS with Firmware >= 2.142
- CPU with MPI/PROFIBUS Interface
- Interface has to support S7 connections

Download: STEP7 Sample: Connction via IBH Link in routing mode

This kind of connection offers the possibility to exchange a large amount of data very fast - up to 64K.

For the communication, the standard blocks FB/SFB 8/9 (USEND / URCV) and FB/SFB 12/13 (BSEND / BRCV) are used.


Within the IBHNet settings the routing mode must be activated. This mode is available beginning with firmware version 2.142.

With projected connections via RFC1006 it is not possible to communicate over unprojected connections any more!

The normal IBHNet communication over port 1099 via the IBHNet driver is not influenced from this setting.

IBHLink routing.png

The IBHLink S7++ will be configured as a station within NetPro.
IBH Link as Station.png
The following station must be selected:
MLFB: 6ES7 412-2EK06-0AB0 V6.0 Rack 0, Slot 2
MPI/PROFIBUS address of the IBHLink S7++
IP Address of the IBHLink S7++

Configuration of the station within the hardwareconfigurator:
IBH Link as station HWC.png

Within NetPro all corresponding CPUs besides the IBH Link station need to be configured. The S7 connection will be established from the real existing CPU via Ethernet to the IBH Link Station. In this case the real existing CPU is the active Partner.
Connection1.png

Connection1 parameter.png

The partners connection resource is given automatically and is relvant for the next step.

Connection1 address.png

The IBH Link station establishes a S7 connection via PROFIBUS to the second real existing CPU. In this case, the IBH Link station is the active Partner. As local ID the automatically given ID from the step before must be entered (within the sample: 10).

Connection2.png

The connection status can be displayed within NetPro:

Connection status.png

This type of connection allows complex networking:

Connection multi.png

For the connection to an IBH Link S5++, no dummy CPU needs to be configured within NetPro. It is enough to create an unspecified S7 connection via Ethernet. In this case, the partner IP address is the IP address of the IBH Link S5++. Within the Address Details for the Partner Rack = 0 and Slot = 2 must be selected. For communication, the blocks PUT/GET are chosen - SFB14/15.
IBHLinkS5 address.png