Difference between revisions of "IBHLink S7++:PLC-PLC communication"

From IBHsoftec Wiki English
Jump to: navigation, search
(MPI – Ethernet – MPI with S7 conection (projected) / MPI – Ethernet / MPI – IBH Link S5++)
Line 122: Line 122:
 
[[Image:DB.png]]<br>
 
[[Image:DB.png]]<br>
  
The parameters MPI asdress, Slot- and Rack No. are used. Entering an IP Adresse is not needed using this kind of connection. If several connections are used it is recommended to use UDTs.
+
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++==
 
==MPI – Ethernet – MPI without projected configuration / MPI – Ethernet/MPI – IBH Link S5++==
Line 131: Line 131:
 
- SIMATIC Manager or '''[http://www.ibhsoftec.com/S7W-Eng S7 for Windows®]''' from IBHsoftec<br>
 
- SIMATIC Manager or '''[http://www.ibhsoftec.com/S7W-Eng S7 for Windows®]''' from IBHsoftec<br>
 
- 2 x IBH Link S7++/IBH Link S7++ HS with Firmware >= 2.142<br>
 
- 2 x IBH Link S7++/IBH Link S7++ HS with Firmware >= 2.142<br>
- The CPU must contain the blocks XPUT and XGET (SFC67, SFC 68).  
+
- The operating system of the CPU must contain the blocks XPUT and XGET (SFC67, SFC68).  
The information if the CPU contains those blocks can be gathered from the Siemens CPU documentation.  
+
The information, whether the CPU contains these blocks can be gathered from the Siemens CPU documentation.  
  
For this type of connection a projected configuration within NetPro is not necessary. Within the PLC porgram the blocks XPUT/XGET are called to establisch a connection from one IBH Link S7 to the other IBH Link auf. For very comfortable configuration of the communication parameters the blcoks XPUT_IBH and XGET_IBH (developed by IBHsoftec) are available and can be found within the sample. .<br>
+
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.<br>
  
  
Line 143: Line 143:
 
CALL  FB    67 , DB67
 
CALL  FB    67 , DB67
 
       REQ        :=M10.0              //Start reading with positive edge
 
       REQ        :=M10.0              //Start reading with positive edge
       DEST_ID    :=0                  //Pointer within Parameter DB
+
       DEST_ID    :=0                  //Pointer within parameter DB
       DB_PARA    :=100                //No. of Parameter DB
+
       DB_PARA    :=100                //No. of parameter DB
       IBHLINK_ADDR:=B#16#0            //MPI Address Quell IBH Link
+
       IBHLINK_ADDR:=B#16#0            //MPI Address source IBH Link
       SRC_ADDR    :=P#M 100.0 BYTE 20  //Data to be read for the destination CPU
+
       SRC_ADDR    :=P#M 100.0 BYTE 20  //Location of data in the destination CPU
       DST_ADDR    :=P#M 100.0 BYTE 20  //Data to be written for the local CPU
+
       DST_ADDR    :=P#M 100.0 BYTE 20  //Location of data in the local CPU
 
       RESULT      :=MW2                //STATUS infomation
 
       RESULT      :=MW2                //STATUS infomation
 
       BUSY        :=M3.0              //Job status
 
       BUSY        :=M3.0              //Job status
The cooenction data from the IBH Link of the source CPU are stored within a DB.  
+
The information for the IBH Link on how to reach the destination CPU are stored within the parameter DB.  
  
 
[[Image:DB_100.png]]<br>
 
[[Image:DB_100.png]]<br>
  
Rack and Slot No are 0 when using MPI . The parameter for S5 conenctions using the IBH Link S5++ are:<br>
+
Rack and Slot No are 0 when using MPI. The parameters for S5 conenctions using the IBH Link S5++ are:<br>
  
 
{| class="wikitable"
 
{| class="wikitable"
 
|-
 
|-
| Destination IP Addres || IP Address of the IBHLink S5++
+
| Destination IP address || IP address of the IBHLink S5++
 
|-
 
|-
| Destination MPI Adress || 2
+
| Destination MPI address || 2
 
|-
 
|-
 
| Destination Rack || 0
 
| Destination Rack || 0

Revision as of 10:54, 18 February 2013

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: STEP®7 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: STEP®7 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: STEP®7 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 or S7 for Windows® from IBHsoftec
- 2 x IBH Link S7++/IBH Link S7++ HS with Firmware >= 2.142
- CPU mit MPI Schnistelle
- Schnittstelle muss S7-Verbindungen unterstützen


Download: STEP®7 Beispiel: MPI – Ethernet – MPI mit S7-Verbindung (Projektiert)


In NetPro muss die CPU mit einem Industrial Ethernet verbunden werden. Es wird eine unspezifizierte S7-Verbindung benötigt:
Datei:S7Verbindung600px.png

In den Eigenschaften der S7-Verbindung muss die MPI-Adresse des Quell-IBH Links angegeben werden:
Datei:S7Verbindung2.png

Verbindungsaufbau per FB/SFB 15 (PUT)
Da beim Verbindungsaufbau mit einem IBH Link S7++ mehr Verbindungsinformationen benötigt werden, als in NetPro angegeben werden können, kann der IBH Link S7++ mit einer speziellen Kennung in einen Modus versetzt werden, in dem er die benötigten Verbindungsparameter mit einem Aufruf des Bausteins "PUT" als Datenstruktur übergeben bekommt. Ein weiterer Grund für die Verwendung dieser Verbindung ist, wenn Sie Daten mit mehreren Ziel-CPUs austauschen möchten.

OB1 erstellen
Im ersten Netzwerk wird der Baustein SFB15 zur Parameterübergabe aufgerufen. Im zweiten Netzwerk wird der SFB14/15 für den Datenaustausch aufgerufen.
Datei:OB1.png

CALL "PUT" , DB15

      REQ   :=M0.0                     //Lesevorgang bei steigender Flanke 
      ID    :=W#16#1                   //S7-Verbindungs ID wie in NetPro projektiert
      DONE  :=M0.1                     //Schreibvorgang abgeschlossen
      ERROR :=M0.2                     //Fehlerbit
      STATUS:=MW2                      //Statuswort (siehe Dokumentation Siemens)
      ADDR_1:=P#DB65535.DBX 224.0 BYTE 8    //IBH Link S7++ Kennung für PROFIBUS-Verbindungsaufbau.

Der IBH Link S7++ bekommt mit dieser Kennung den Verbindungsaufbau mitgeteilt.

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

"PLC_CONNECTION_RECORDS" – Symbolischer Name des DBs welcher die Verbindungsparameter enthält. Connection[0] – Zeiger auf die gewünschte Start Adresse im DB welcher die Verbindungsparameter enthält. Enthält der DB meherere Verbindungen, können sie über diesen Parameter ausgewählt werden und somit auf verschiedene CPUs zugreifen.

CALL SFB 14 , DB14

      REQ   :=M10.0                    //Lesevorgang bei steigender Flanke starten
      ID    :=W#16#1                   //S7-Verbindungs ID wie in NetPro projektiert
      NDR   :=M10.1                    //Lesevorgang abgeschlossen
      ERROR :=M10.2                    //Fehlerbit
      STATUS:=MW20                     //Statuswort (siehe Dokumentation Siemens)
      ADDR_1:=P#M 10.0 BYTE 20         //zu lesende Daten entfernte CPU
      ADDR_2:=
      ADDR_3:=
      ADDR_4:=
      RD_1  :=P#M 10.0 BYTE 20         //zu schreibende Daten lokale CPU
      RD_2  :=
      RD_3  :=
      RD_4  :=

Abhängig von der verwendeten CPU müssen die passenden Bausteine FB14/15 oder SFB14/15 verwendet werden.

Es wird ein DB benötigt, welcher die Verbindungsparameter enthält.

Datei:DB.png

Es werden die Parameter MPI-Adresse, Slot- und Racknummer verwendet. Eine Angabe der IP Adresse ist bei dieser Verbindung ist nicht nötig. Bei mehreren Verbindungen empfiehlt es sich, mit UDTs zu arbeiten.

Bei S5 Verbindungen folgende Parameter für den IBH Link S5++ verwenden:
Ziel-IP-Adresse: IP-Adresse des IBHLink S5++
Ziel-MPI-Adresse: 2
Ziel-Rack: 0
Ziel-Steckplatz: 0

Connection via IBH Link Mode: Configuration via NetPro

Voraussetungen
- Simatic Manager
- IBH Link S7++ / HS ab Firmware 2.142
- Schnittstelle muss S7-Verbindungen unterstützen

Download: STEP®7 Beispiel: Verbindung über IBH Link im Projektierten Modus

Diese Verbindungsvariante hat den Vorteil das Große Datenmengen schnell ausgetauscht werden können - bis zu 64K. Für die Kommunikation werden die Standardbausteine FB/SFB 8/9 (USEND / URCV) und FB/SFB 12/13 (BSEND / BRCV).

Routing-Modus muss in IBHLink S7++ aktiviert sein. Dieser Modus ist ab Firmware Version 2.142 verfügbar. In diesem Modus sind keine unprojektierte Verbindungen über RFC1006 mehr möglich! Verbindungen über den IBHNet-Treiber funktionieren weiterhin.

Datei:IBH Link.png

Der IBHLink S7++ wird in NetPro als eine Station angelegt.
Datei:IBH Link als Station.png
Folgende Baugruppe muss vrwendet werden:
MLFB: 6ES7 412-2EK06-0AB0 V6.0 in Rack 0, Steckplatz 2
MPI/Profibusadresse wie IBHLink S7++
IP-Adresse von IBHLink S7++

Konfiguration der Station im Hardwarekonfigurator:
Datei:IBH_Link_als_Station_HWK.png

In NetPro müssen neben der IBH Link Station auch alle CPUs angelegt werden, mit denen kommuniziert werden soll. Die S7-Verbindung wird von der tatsächlichen CPU über Ethernet zur IBH Link Station aufgebaut. Hierbei ist die tatsächliche CPU der aktive Teilnehmer.
Datei:Verbindung1.png

Datei:Verbindung1Parameter.png

Die Partner-Verbindungsresource wird automatisch vergeben und ist für den nächsten Schritt relevant.

Datei:Verbindung1Details.png

Die IBH Link Station baut nun eine S7-Verbindung über Profibus zur zweiten tatsächlichen CPU auf. Hierbei ist die IBH Link Station der aktive Teilnehmer. Als lokale Verbindungs-ID wird hier nun die im vorherigen Schritt automatisch zugewiesene Verbindungsresource (im Beispiel: 10) angegeben.

Datei:Verbindung2px800.png

Der Verbindungsstatus kann direkt in NetPro angezeigt werden:

Datei:Verbindungsstatus aktivieren.png

Mit dieser Verbindungsvariante sind komplexe Vernetzungen möglich:

Datei:VerbindungMulti.png

Für eine Verbindung zu einem IBH Link S5++ muss keine Dummy-CPU in NetPro angelegt werden. Es reicht aus, lediglich eine unspezifizierte S7-Verbindung über Ethernet einzurichten. Die Partner-IP-Adresse ist in diesem Fall die IP-Adresse des IBH Link S5++. Zur Kommunikation müssen die Bausteine PUT/GET verwendet werden - SFB14/15.
Datei:VerbindungS5px800.png