Citect and Sepam in IEC61850

F

Thread Starter

Fneto

Hi,

I am trying to communicate Citect 2016 with Sepam relay in IEC61850 protocol. I am having questions about editing the xml file. Has anyone done this before? Could you help me with the information in this file and the necessary settings for Citect?

Francisco Neto
[email protected]
 
R

Ralph Mackiewicz

To which XML file are you referring? If this is the Substation Configuration Language (SCL) file for the Sepam device (CID, IID or ICD) you should probably not be editing that. You would typically import that SCL file into the IEC 61850 client for Citect in order to configure it to talk to the Sepam device.
 
Hello Francisco,

The xml file should either define the explicit path to the CID file, or at least define the name if both the XML and CID are saved in the same directory. Here is an example from the help where the CID file and XML reside in the project directory.<pre>
<?xml version="1.0" encoding="utf-8"?>
<ScadaDevice xmlns="http://www.schneider-electric.com/SCADA/Drivers/IEC61850/DeviceConfig/v1/">
<SCL>ECI_46.cid</SCL>
<IED>ECI_46</IED>
<LogicalDevice Name="S80">
<BRCB>brcbST01</BRCB>
<BRCB>brcbMX01</BRCB>
<URCB>urcbMX01</URCB>
</LogicalDevice>
</ScadaDevice></pre>
 
Hi,

I got it. This is the solution tested and validated here.

File CID used in this application : IEC.cid

Address server in the Citect: [RUN]:IO61850.xml

File XML: IO61850.xml

script in the file:<pre>
<?xml version="1.0" encoding="utf-8"?>
<ScadaDevice xmlns="http://www.schneider-electric.com/SCADA/Drivers/IEC61850/DeviceConfig/v1/">
<SCL>[RUN]:IEC.cid</SCL>
<IED>IEC</IED>
<LogicalDevice Name="LD0">
<URCB>urcbMMXU101</URCB>
<URCB>urcbMMXU201</URCB>
<URCB>urcbMMXU301</URCB>
<URCB>urcbMMXU401</URCB>
<URCB>urcbPQ101</URCB>
<URCB>urcbPQ201</URCB>
<URCB>urcbPQ301</URCB>
<URCB>urcbPQ401</URCB>
<BRCB>brcbGGIO101</BRCB>
<BRCB>brcbGGIO201</BRCB>
<BRCB>brcbGGIO301</BRCB>
<BRCB>brcbGGIO401</BRCB>
</LogicalDevice>
</ScadaDevice></pre>
 
Top