A Management System for a Distributed Power-Line Based Communication Infrastructure

Size: px
Start display at page:

Download "A Management System for a Distributed Power-Line Based Communication Infrastructure"

Transcription

1 A Management System for a Distributed Power-Line Based Communication Infrastructure Aleksey Bratukhin Institute of Computer Technology Vienna University of Technology Gusshausstr /384 A-1040 Vienna, Austria bratukhi@ict.tuwien.ac.at Gerhard Pratl Institute of Computer Technology Vienna University of Technology Gusshausstr /384 A-1040 Vienna, Austria pratl@ict.tuwien.ac.at Abstract Maintaining a hierarchical communication system with different components participating in data exchange is a complex task that requires a management infrastructure, which allows controlling and monitoring all components. This paper introduces the management system concept for a communication system that is based on power-line communication (PLC) and an IP-based backbone. The management system is independent of the PLC system; therefore it is able to be being used on different communication media like GSM networks or IP-based networks 1. Introduction Devices that are communicating over a network and are located in various, distributed location require remote management. The REMPLI project (Real-time Energy Management via Powerlines and Internet) develops the architecture for a system that provides Automated Meter Reading (AMR), energy management and domotic applications. It uses power-line communication to establish a wide-scale control system without excessive installation costs for additional communication infrastructure. That means that communication is not bound to a serial line that establishes a point-to-point connection between a field device and an application, but consists of different network segments, which have to communicate to each other. This paper focuses on the remote management of components like network infrastructure components (e.g. bridges) as well as the equipment providing the actual data that are of interest for the user if the system (e.g. energy meters). Previous research has shown that existing management protocols like SNMP are unsuitable for the purposes of REMPLI [1]. The REMPLI management system provides the following functionalities: Configuration of the system components Monitoring of the system Maintaining the logs of the system components The paper is organized as follows: section 2 gives a brief introduction into the architecture of the communication system, section 3 explains the different aspects of the management system and provides some taxonomy for the different parts of the system, section 4 explains the three management functionalities configuration, monitoring and logging in detail, and section 5 describes the software modules that cooperate in the system. Finally, the conclusion in section 6 sums up the results and gives a short outlook. Figure 1: System architecture 2. REMPLI System Architecture The REMPLI project implements a power-line communication infrastructure to connect existing application software of utility companies with field-level equipment at the customers premises. The project is carried out within the Fifth Framework Programme of the EC (the project identifier is NNE ) X/05/$ IEEE

2 As shown in Figure 1 the communication network the power grid is used as the physical medium to transmit data. All the peculiarities that are necessary for energy transport in the grid have to be considered in the communication network. Application Servers are connected to Access Points using a private IP (Internet Protocol) network, Access Points connect the IP-network to the medium voltage (MV) power-line network (redundant paths are due to power grid switching), Bridges at the medium-to-low voltage (MV/LV) transformer stations provide a transparent data link between LV and MV power lines ([2] contains a description of the design of the Access Point architecture). From there data are transmitted over the low voltage power-line network to the Nodes. Nodes are able to communicate over power-line and connect equipment such as energy meters or SCADA (Supervisory Control And Data Acquisition) equipment and thus make this equipment accessible to Application Servers over the existing power-line grid. Depending on the requirements imposed by the application, various existing, standardized protocols are supported, namely IEC [3], EN (also known as IEC 1107) [4], and EN (commonly known as M-Bus) [5]. A REMPLI Access Point enables Application Servers in the IP-network to communicate with Nodes that are connected to the REMPLI communication network [6,7]. The network is shared among different parties simultaneously (e.g. Application Servers communicate with multiple Nodes over the same Access Point), each Access Point has to multiplex data streams. While this is easy to accomplish in the IP world, it requires additional efforts in the connectionless packet-based PLC network. An Access Point also has to deal with communication and equipment redundancy; multiple independent Access Points can be attached to the same REMPLI communication network. It might happen that one Access Point is not able to reach all Nodes. Different Access Points then have to communicate to each other in order to provide maximum possible coverage of Nodes. Figure 2 Management System architecture The considered PLC is a master-slave system, where Nodes act as slaves and the Access Points are the masters. The Nodes are the interface to utility meters and SCADA equipment like switchgears. The standardized protocols mentioned above are used by both the connected equipment and the Application Servers, so neither the equipment nor the application servers need to be aware of the PLC system. 3. Management System The REMPLI Management system consists of five main blocks: Management Applications (MA), Access Points Management Drivers (APMD), Node Management Drivers (NMD), Bridge Management Drivers (BMD) and the REMPLI Components as shown in Figure 2. The term Components refers on one side to software modules such as Protocol drivers, Security Modules, PLC related components; on the other hand a Node, Access Point or Bridge as a whole has to be accessible for management, therefore these entities are also Components. The Management system communicates with Components and controls them. The Management Application on the top in Figure 2 represents the user of the management system, which observes and controls the Components at the bottom via the Management Drivers, which provide communication facilities and maintains Registries; a Registry is a database where Component Parameters and Logs of the Components are stored in a combination of volatile and non-volatile memory; there is only one registry per physical device, so it is the central instance for all configuration storage. The interface for modifying the Registry is the Management Driver. There are two types of Registries: Node/Bridge Registries, which contain only data related to the components of a particular Node or Bridge; and there is the Access Point Registry, located on Access Points, which contains the Access Point related data as well as data from Node and Bridge Registries, which are accessible from the particular Access Point. Configuration and control is based on Component Parameters; these are name/value pairs with a defined type. Every Component operates on its set of Component Parameters by adding, removing or updating via the Management Driver. A Component Parameter can either be a configuration parameter or a monitoring parameter. Logs are tables of historical data and are also stored in the registry. A Log is ordered by timestamp or sequence number and contains, for example, energy consumption values of a connected energy meter for the last week. The Management Driver performs management functionality at each physical device (Access Points, Nodes and Bridges) and provides two types of interfaces: one between a Component and the Registry and one between a Component and the Management Application.

3 For the three types of physical devices, there are three types of management drivers: Access Point Management Driver (APMD): a key component of the management system, which connects Components to the Management Application and to the Registry. It is responsible for the communication between the Management Application and the Node or Bridge Management Drivers and controls the Access Point Registry. Node Management Driver (NMD): it connects Components to the Management Application and to the Registry and controls the Node Registry; Bridge Management Driver (BMD); its functionality is identical to the functionality of the NMD, therefore both will be referred as N/BMD later in the document. The Management Application provides an interface to the operator and communicates with the Access Points in order to manipulate the Component Parameters. There can be more than one Management Application in the system with different access rights to the Component Parameters. In general, the user of the Management Application controls the system remotely, but for some special occasions the system can be accessed locally from the Access Point using the APMD. In this case the user can only manage the local Components, but no remote components. 4. Management Services The Management System performs three different functions: Configuration: this is the procedure of setting, removing or updating Component Parameters. The Management Application can depending on its access rights change all Component Parameters, whereas a Components is only allowed to change the Component Parameters that it owns, Monitoring: uses the Monitoring Parameters to frequently obtain relevant information like, for example, the current network load, the link quality or the uptime of the physical device. Logging: the Logs that are stored in the Registry can be retrieved by the Management Application Additionally, there are some general requirements to be fulfilled in order to implement the previously mentioned general functionalities: first, every Management Application has limited access rights to the components, which is defined by legal contracts between providers of infrastructure and users of the system. Therefore, the Management System has to implement Access Control mechanisms, which are described in [8]. Second, in order to provide cost-effective installation, it is necessary to provide Auto-discovery: a new Component has to be able to register itself in the system without manual interaction and be recognized by the respective instances (local Management Driver and the Management Application). Finally, in order to operate the system, the user of the Management Application needs to know the physical layout of the system of the system down to the Access Points, Nodes, Bridges and the REMPLI Components. In order to avoid the single point of failure and make the system image accessible not only from the top layer, but also locally from the middle layer the distribution of the physical layout of the system is required, located at the Access Points and represented by the local Registries Configuration Components in the system need to be configured, both during installation and during normal operation. This is done by changing Component Parameters. These parameters can be accessed by either the Component or the user of the Management Application via the Management Driver located at the particular node. Each component has to have a possibility to join the system with a certain list of parameters and be updated by the user of the Management Application or by the component itself while the system is running. All the parameters have to be locally accessible by the Components (which only has access to its own parameters) and by the Management Application. If a parameter has to have the same value at several Components, the Management system provides the possibility to update this parameter in all necessary Nodes automatically and consistently. Due to the fact that only the user has an overview of the whole system (or segment of the system), the synchronization of the parameters has to be done on the top management level, namely the Management Application. If both a Component and the Management Application update the same parameter the necessary synchronization is performed by the Management Driver, because it is the only instance that accesses the Registry. The Management Driver can serve only one request a time, meaning that the first incoming update will be served first (parameter will be updated in the Registry, then the respected instance, either a Components or/and the Management Application, will be informed about the changes) and only then the second request will be processed. If the Component is removed from the system, which can happen only by the decision of the Management Application, then all its parameters have to be removed from the local Registry. The Component itself is not (and cannot be) responsible for keeping track on this process. Therefore the Management Driver is responsible for a consistent state of existing Components and the corresponding data in the Registry. To summarize, the following requirements are fulfilled by the management system in order to implement the configuration functionality:

4 a local Registry in each Node, Access Point and Bridge for Component Parameter storage access to these Registries by the Management Application and the Components; access is controlled by the Management Driver a procedure that allows the Management Application to react on the installation/deinstallation of a Component; Components need to obey this procedure, only then the Management Driver can keep the Registry in a consistent state The installation/de-installation of a Component has to be recognized by the management system. A Component can be removed from the system with all of its parameters, which has to be triggered by the Management Application (system operator). The Management Driver offers basic functions to manipulate parameters at the Registry (adding, reading, updating and removal); The Management system provides the addressing schemes of parameters allowing to manipulate parameters of a certain set. That means not only a single parameter can be addressed but also all parameters of a certain type or location, as well as a combinations of types and locations Monitoring The general purpose of monitoring is to keep track on any changes occurring in the system, meaning that the user of the management system is automatically informed about updates of Monitoring parameter values. Basically, monitoring is the general way a component communicates with management system user and it is usually the component which initiates the communication, e.g. for identification of a status change. Nevertheless, the operator can also trigger the process in order to manage the components without waiting for a change to occur. The user of the Management Application requires a Human-Machine Interface (HMI). The user has to be able to configure, which information shall be displayed, whether only events or complete status shall be shown, especially the visualization of alarm is important. Depending on the use case either the actual data from the equipment and its status is important (e.g. energy consumption, connectivity of power supply networks, status of switchgear equipment) or the information about the communication infrastructure equipment (e.g. status of communication link, available bandwidth, Node registered/active/offline). To summarize, the following Monitoring functionalities have to be implemented by the Management System: Monitoring the updates of Monitoring parameters Components trigged by the Component itself and processed by the Management driver; Monitoring the Components availability, performed by the Management driver; 4.3. Logging Every Component creates Logs, where the actions it performs are shown and historical values can be stored. The Logs have to be stored in the Registry until requested by the Management Application. Both the Component itself and the system user can retrieve the logs from the Registry; Management Application has to be able to clean-up the log entities from the Registry. The Components and the Management Application access the Logs via the Management driver, which informs the Registry to manipulate the Logs. Management of Logs is the task of the Registry, which has not only to react on the requests from the Management driver but also maintain the memory consumed by the Logs and, depending on the configuration, clean up outdated entries. 5. Software modules In order to fulfill the requirements that have been identified until now, we have specified the following software modules Management Application The Management Application is the upper layer of the REMPLI management system and represents the operators of the system, who control the Components by manipulating parameters located at the physical devices (Access Points, Nodes and Bridges). The MA provides the HMI for communication with the user of the system. The MA has knowledge only about the Access Point Management Drivers (APMDs) it can access; via which it retrieves the information concerning Nodes, Bridges, Components and their parameters it can control. The Management Application consists of three modules: Human-Machine Interface Module: a Graphical User Interface (GUI), which visualizes the system layout for the user and shows the Access Points that are controlled by the MA. The user is allowed to control the Nodes and Bridges accessible via the Access Points. Every single Access Point, Node or Bridge shows the Components it contains (note that "Component" refers to the definition given in section 1). The MA can retrieve the Logs and parameters of the Components by request. Management Functionality Module: performs configuration, monitoring and logging related functions by issuing requests to the APMDs

5 Communication Module: it organizes the communication between the MA and Access Points over the private network 5.2. Management Driver The Management Driver is a key component of the Management system, providing the communication facilities and performing management functionalities in the distributed fashion. There are two types of Management drivers defined in REMPLI, which differ by location and performed functionality: Access Point Management Driver (APMD) and Node/Bridge Management Driver (N/BMD); Access Point Management Driver The APMD is the middle layer of the management system connecting the MA with the Nodes, Bridges and the Components. The APMD operates with the Access Point Registry; this specific Registry contains not only the local parameters, but also the parameters of the Nodes/Bridges it is able to access. The combination of Access Points Registries represents the physical layout of the whole REMPLI Management system. Therefore the system layout is distributed among the Access Points, which provides flexibility to the system and does not require a central database, which is always a single point of failure. This way of system layout representation is also required by the system users, who want to access the system locally, which implies that at every Access Point the user can access the system or at least the segment of the system locally, without connecting to the Management Application over the private network. The APMD consists of two functional and three communication modules: Configuration and Monitoring Modules: provide configuration and monitoring functionality on the Access Point side and control the Access Point Registry. The difference to the N/BMD is that APMD is responsible for synchronization between the N/BMDs Registries in the Access Point Registry MA Communication Module: a partner of the MA s Communication Module, provides communication between the APMD and the MA DeMux Communication Module: provides the connection between the APMD and the instances below DeMux; it controls communication via DeMux with the Nodes and Bridges connected to the Access Point; Component Communication Module: provides local communication between the APMD and the Components located at the Access Point; Access Point Registry: contains the Component Parameters and Log of both the locally residing Components and the Components of the Nodes that can be accessed by the Access Point Node/Bridge Management Driver The N/BMD is at the bottom of the REMPLI Management system. It communicates with the Access Points in order to maintain the image of a local Registry of the Node/Bridge at the Access Point Registry. Opposite of the APMD, the N/BMD maintain the Registry which contains only the local parameter and Logs of the location it resides. The N/BMD communicates with the MA via the APMD for configuration, monitoring and logging. N/BMD has a structure similar to the APMD, which consists of two functional modules and two communication modules, but does not require the MA communication module. Despite having the same structure of the Registry contains only local parameters and logs, which affects the behavior of the Configuration and Monitoring Modules: Configuration Module and Monitoring; provide communication between the Components and the Registry on one side and between the Registry and APMDs on the other side. Via the APMDs it communicates with the MAs The Component Communication Module is identical to the APMD Communication Module, controlling the connecting between the Components residing at the Node/Bridge and the Management Driver 5.3. REMPLI Component Components in REMPLI are logical instances, which can be related to hardware or be purely software instances performing certain functionalities. Each Component is a part of the REMPLI Management system; therefore, it provides management functionality to the Management system in order to communicate with Management Drivers and maintain the parameters. Each of the Components has a Communication Module, which is a standard for all REMPLI Components, providing communication mechanisms between the Component and the Management Driver. Additionally to the Communication Module, each Component has a Management Module, which functionality is specific for each type of the Component and depends on a system module it manages. Most of the Components are related to the REMPLI system modules, such as Protocol Driver, DeMux and Security Module. Nevertheless, there are specific Components in the Management system, which are not connected to a particular system module: Executor Component: located at each Node it starts the other Components at the node. This Component is not related to any particular module and does not represent the Node itself, but rather serves as a temporary instance only for the Node start-up. Management Driver Kernel Proxy (MDKP) Component: provides management functionality to the kernel components, such as Physical and Network layers. For the rest of the Management

6 system the behavior of the MDKP Component is the same as for the other Components. Each of the REMPLI Management Drivers communicates with the Components located at the same Node and does not communicate with the remote Components directly; instead it uses the local Management Driver. The Management Driver is the only communication partner of the Components, meaning that the Components do not access the Registry or communicate with the Management Application directly, but always via the MD. If, for example, the Component updates a parameter, the Management Application can be simply not informed about the update if the notification bit in the parameter status set to no notification. Each Component manipulates parameters stored in the local Registry (in case of Node/Bridge Components image of the Registry is stored in the respected Access Points). The set of parameters generally depends on the type of the component, although there are some parameters, which are standard for all Components. For example, Parameter 0 shows availability of the Component Registry The Registry is a database that is located on every Access Point, Node and Bridge and serves local components to store Component Parameters and Logs. Components and Management Applications can access variable size. Depending on the actual stored values the table might offer space for a variable number of parameters. The columns of the parameter table are: REMPLI Node Address: identification of the Node/Bridge or Access Point; this address is unique for the whole REMPLI system Component ID: Component identification; unique for a particular Access Point, Node or Bridge Group ID: identification of a group of parameters Parameter ID: Parameter identification; unique for a particular Component. Each component does posses a default parameter, which reflects general Component status information. It is used by the management driver to check if the Component is available; Parameter Status: parameter status information contains: modification rights that define the access rights for the Component, the parameter belongs to, and for the Management Application; a parameter type that provides information how the stored value can be interpreted (integer number, long integer, floating-point numbers, text and binary data); notification priority specifies, whether a change (initiated by the Component) of the parameter should be reported to the MA; notification range specifies the range of values within which the REMPLI Node Address RNA Component ID compntid Group ID groupid Parameter ID parid Parameter Status parstatus 1949 DeMux Group ro M-Bus driver Group 2 0 cw, maw 43 Security Module Parameter Value parval M V 110 a textual example value 0 1 C N Group C N the Registry in order to create, update or retrieve parameters. The communication between the Registry and the Components or the Management Application, respectively, are organized via the Management Driver, which reacts on requests by sending appropriate commands to the Registry to fetch or write values. To manage parameters and logs the Registry offers two table-like structures: The parameter table and log tables Parameter table Each Registry contains one parameter table. The format of the parameter table is described in Figure 3. It shows three symbolic examples for entries. The size of the total table is limited at system design phase and reflects the available memory, whereas the values are of Table 1 Registry structure change in the parameter value will be reported to the MA. This status field defines only type of range checking, but not range values. The range values are defined in the separate parameters reserved for the each parameter by the Registry during its creation. Functionality type distinguishes between Monitoring Parameters and Configuration Parameters; Memory type distinguishes between volatile (such as RAM) and non-volatile (such as flash) memory. Parameter Value: a variable size field that contains the actual value of the parameter Log tables For storing log information (e.g. historical values of data points or PLC traces) the Registry offers multiple Logs.

7 Logs are stored in a table-like structure, which consists of a sequence number which is unique for a particular log table and incremented for each entry in the log, an optional time stamp which will be set automatically when a log entry is made, and the log data; the type of the data stored in the variable sized log data field is implicitly defined by the log itself (e. g., a log of one data point only contains log data of the type of the data point) The total size of a Log is limited and defined when it is created. Hence the number of log entries is dependent on the size of the actual log data. If the log size is exceeded the log will start overwriting the eldest entries. This mechanism solves the problem of deletion in case of exceeding the log size and still retains the most actual values. The Management application can set the limits on the size of log buffer and the log data field via log table parameters of the appropriate components. For data retrieval either sequence numbers or time stamps can be used to address the log entries. By specifying special Sequence Numbers or timestamps a set of/all entries can be retrieved, e.g. "050203*" address all time values with the specified date; "0-4" addresses all sequence numbers greater than four. 6. Conclusion We have presented the management system that is employed in the REMPLI project. The requirements for a management system that is able to handle a widely distributed network of devices, which can only be managed remotely over the same communication channel that is used for all data exchange (namely, the PLC network and the IP-based backbone) have been identified and a solution together with a detailed software description has been presented. The next steps are defined by the progress in the project. More specifically, the system will be employed in two field tests, in Bulgaria and Portugal, where the functionality of the system as a whole and particularly the management system will be proven. References [1] T. Sauter, M. Lobashov, and G. Pratl, Lessons Learnt From Internet Access to Fieldbus Gateways, 28 th Annual Conference of the IEEE Industrial Electronics Society (IECON), Sevilla, Nov [2] G. Pratl, M. Lobashov, T. Sauter "Highly Modular Gateway Architecture for Fieldbus/Internet Connections"; Feldbustagung FeT 01, Nancy, France; Nov. 2001; p. 293 [3] IEC TC 57, IEC x Telecontrol equipment and systems - Part 5: Transmission protocols, IEC, Geneva, [4] IEC TC 13, EN Electricity metering Data exchange for meter reading, tariff and load control, CENELEC, Brussels, [5] CEN TC 176, Communication systems for meters and remote reading of meters - Part 3: Dedicated application layer (M-Bus), CEN, Brussels, 2002 [6] G. Pratl, M. Lobashov "Remote Access to Power-Line Networked Nodes: Digging the Tunnel"; IEEE International Workshop on Factory Communication Systems (WFCS2004), Vienna, 2004 p [7] G. Bumiller, T. Sauter, G. Pratl, A. Treytl "Secure and Reliable Wide-Area Power-Line Communication for Soft-Real-Time Applications within REMPLI"; 9th International Symposium on Power-Line Communications and Its Applications (ISPLC 2005), Vancouver; Apr [8] A. Treytl, T. Sauter Security Concept for a Wide-Area Low-Bandwidth Power-Line Communication System ; 9th International Symposium on Power-Line Communications and Its Applications (ISPLC 2005), Vancouver; Apr. 2005

8

IPP-HURRAY! Research Group. Polytechnic Institute of Porto School of Engineering (ISEP-IPP)

IPP-HURRAY! Research Group. Polytechnic Institute of Porto School of Engineering (ISEP-IPP) IPP-HURRAY! Research Group Polytechnic Institute of Porto School of Engineering (ISEP-IPP) Characterizing the Timing Behaviour of Power-Line Communication by Means of Simulation Luis MARQUES Filipe PACHECO

More information

Smart Grid Communications. WFCS 2016 May 3-6, 2016, Aveiro, Portugal

Smart Grid Communications. WFCS 2016 May 3-6, 2016, Aveiro, Portugal Smart Grid Communications WFCS 2016 May 3-6, 2016, Aveiro, Portugal Agenda EFACEC Overview Smart Grids Communications Substation Automation System (SAS) Communications Conclusions Efacec is present in

More information

INTERNAL AND EXTERNAL CLOCK SYNCHRONIZATION IN A POWER LINE NETWORK

INTERNAL AND EXTERNAL CLOCK SYNCHRONIZATION IN A POWER LINE NETWORK INTERNAL AND EXTERNAL CLOCK SYNCHRONIZATION IN A POWER LINE NETWORK Georg Gaderer, Patrick Loschmidt, Albert Treytl Research Unit for Integrated Sensor Systems Austrian Academy of Sciences Viktor Kaplan

More information

ELECTRICAL, INSTRUMENTATION & CONTROL SYSTEMS

ELECTRICAL, INSTRUMENTATION & CONTROL SYSTEMS ELECTRICAL, INSTRUMENTATION & CONTROL SYSTEMS Presentation by: RANA NASIR ALI General Manager, Power Plants Projects, at PITCO November 02, 2017 ELECTRICAL PLANT CONCEPT The electrical equipment, depending

More information

Powerline Communication System for Monitoring and Supervision of Feeder Equipments for MV Substation Automation

Powerline Communication System for Monitoring and Supervision of Feeder Equipments for MV Substation Automation Powerline Communication System for Monitoring and Supervision of Feeder Equipments for MV Substation Automation LiPing LU 1,2, GangYan LI 1, YeQiong SONG 2 1 School of Mechanical and Electronical engineering,

More information

PAP13 - Harmonization of IEEE C with IEC and Precision Time Synchronization

PAP13 - Harmonization of IEEE C with IEC and Precision Time Synchronization PAP13 - Harmonization of IEEE C37.118 with IEC 61850 and Precision Time Synchronization 12 July 2010 Use Cases Related to Mapping IEEE C37.118 with IEC 61850 as Proposed for Draft IEC 61850-90-5 Synchrophasor

More information

Blueprint Data Center

Blueprint Data Center Systems and Applications for Data Center Siemens Industy 1. Overview / Purpose In EM EA the datacenter market is seen as one of the fastest growing of the energy businesses. This blueprint is designed

More information

Development Of EMCS In Power Plants

Development Of EMCS In Power Plants Development Of EMCS In Power Plants Eng. H.S.Mohamed, Dr. S.A.Nagy,Dr. S.K.EL-Sayed Dept. of Electrical Engineering Al-Azhar University Cairo, Egypt h_alazhary@yahoo.com Abstract Recently improvement of

More information

Chapter 3 Managing System Settings

Chapter 3 Managing System Settings Chapter 3 Managing System Settings Using the System Settings Utility The navigation pane at the top of the web browser interface contains a System tab that enables you to manage your FS700TSSmart Switch

More information

Danube University Krems. The University for Continuing Education. Security Issues in Resource-limited Sensor Networks. Thilo Sauter Albert Treytl

Danube University Krems. The University for Continuing Education. Security Issues in Resource-limited Sensor Networks. Thilo Sauter Albert Treytl Danube University Krems. The University for Continuing Education. Security Issues in Resource-limited Sensor Networks Thilo Sauter Albert Treytl Wireless Sensor Network Vision High-level company functions

More information

Chapter 2 Communication for Control in Heterogeneous Power Supply

Chapter 2 Communication for Control in Heterogeneous Power Supply Chapter 2 Communication for Control in Heterogeneous Power Supply The need to modernize the power grid infrastructure, and governments commitment for a cleaner environment, is driving the move towards

More information

Substation. Communications. Power Utilities. Application Brochure. Typical users: Transmission & distribution power utilities

Substation. Communications. Power Utilities. Application Brochure. Typical users: Transmission & distribution power utilities Power Utilities Application Brochure Communications Typical users: Transmission & distribution power utilities For more than 30 years, RAD has worked closely with its worldwide energy utility customers

More information

EY-WS 500: Web server for moduweb Vision and moduweb500 BACnet networks

EY-WS 500: Web server for moduweb Vision and moduweb500 BACnet networks EY-WS 500: Web server for moduweb Vision and moduweb500 BACnet networks How energy efficiency is improved Monitor the operation of your building and recognise optimisation potential, wherever you are Features

More information

Networking interview questions

Networking interview questions Networking interview questions What is LAN? LAN is a computer network that spans a relatively small area. Most LANs are confined to a single building or group of buildings. However, one LAN can be connected

More information

ROCON RPC 116. SUBSTATION AUTOMATION Central unit for substation automation

ROCON RPC 116. SUBSTATION AUTOMATION Central unit for substation automation RPC 116 Central unit for substation automation RPC 116 offers an overall concept for substation system automation at Bay Level, Station Level and Control Center Level. RPC 116 is an embedded unit, which

More information

T E C H N O T E. Peer-to-Peer Communication with WirelessHART. HCF_LIT-129, Revision 1.0. Abstract:

T E C H N O T E. Peer-to-Peer Communication with WirelessHART. HCF_LIT-129, Revision 1.0. Abstract: T E C H N O T E Peer-to-Peer Communication with WirelessHART HCF_LIT-129, Revision 1.0 Release Date: September 5, 2008 Abstract: The WirelessHART standard is the first open wireless communication standard

More information

Chapter 8: Smart Grid Communication and Networking

Chapter 8: Smart Grid Communication and Networking Chapter 8: Smart Grid Communication and Networking Prof. Yuh-Shyan Chen Department of Computer Science and Information Engineering National Taipei University Outline 1. The framework of smart grid 2. Network

More information

Cisco Unified Messaging Gateway

Cisco Unified Messaging Gateway Data Sheet Gateway Cisco Unified Communications Solutions unify voice, video, data, and mobile applications on fixed and mobile networks, enabling easy collaboration every time from any workspace. Product

More information

Design of a Gigabit Distributed Data Multiplexer and Recorder System

Design of a Gigabit Distributed Data Multiplexer and Recorder System Design of a Gigabit Distributed Data Multiplexer and Recorder System Abstract Albert Berdugo VP of Advanced Product Development Teletronics Technology Corporation Bristol, PA Historically, instrumentation

More information

Generic Fieldbus Application Program Interface for Windows

Generic Fieldbus Application Program Interface for Windows Generic Fieldbus Application Program Interface for Windows Dipl.-Ing. Martin Rostan, Beckhoff Industrie Elektronik, Nürnberg Dipl.-Ing. Gerd Hoppe, Beckhoff Automation LLC, Minneapolis The choice of the

More information

A DNP3 Protocol Primer

A DNP3 Protocol Primer A Protocol Primer This is a primer for people who want a quick understanding of without having to comb through the tedious details of a complex specification. So let us start with what it is. Protocols

More information

DISCERN SGAM Visio Template User Guide

DISCERN SGAM Visio Template User Guide Distributed Intelligence for Cost-Effective and Reliable Distribution Network Operation DISCERN SGAM Visio Template User Guide Author: OFFIS Date: 22.04.2016 www.discern.eu The research leading to these

More information

Peter Overgaauw Pascal Stijns 27 Oct 2016 EXPERION PKS CONTROLS ELECTRICAL SYSTEMS TOO!

Peter Overgaauw Pascal Stijns 27 Oct 2016 EXPERION PKS CONTROLS ELECTRICAL SYSTEMS TOO! Peter Overgaauw Pascal Stijns 27 Oct 2016 EXPERION PKS CONTROLS ELECTRICAL SYSTEMS TOO! Abstract Gain a basic understanding of an electrical control management system Exposure to a number of technology

More information

Building AMR services over Broadband PLC Networks

Building AMR services over Broadband PLC Networks Building AMR services over Broadband PLC Networks September 21 st, 2005 Endesa Network Factory José Comabella PLC Network Director Introduction Broadband PLC Technology As access technology, the use of

More information

Chapter 13 TRANSPORT. Mobile Computing Winter 2005 / Overview. TCP Overview. TCP slow-start. Motivation Simple analysis Various TCP mechanisms

Chapter 13 TRANSPORT. Mobile Computing Winter 2005 / Overview. TCP Overview. TCP slow-start. Motivation Simple analysis Various TCP mechanisms Overview Chapter 13 TRANSPORT Motivation Simple analysis Various TCP mechanisms Distributed Computing Group Mobile Computing Winter 2005 / 2006 Distributed Computing Group MOBILE COMPUTING R. Wattenhofer

More information

REALISATION OF AN INTELLIGENT AND CONTINUOUS PROCESS CONNECTION IN SUBSTATIONS

REALISATION OF AN INTELLIGENT AND CONTINUOUS PROCESS CONNECTION IN SUBSTATIONS REALISATION OF AN INTELLIGENT AND CONTINUOUS PROCESS CONNECTION IN SUBSTATIONS Christina SÜFKE Carsten HAVERKAMP Christian WEHLING Westnetz GmbH - Germany Westnetz GmbH - Germany Westnetz GmbH - Germany

More information

SEEEI Electricity 2017 Fast & Secure Switching via LTE Mobile Networks

SEEEI Electricity 2017 Fast & Secure Switching via LTE Mobile Networks SEEEI Electricity 2017 Fast & Secure Switching via LTE Mobile Networks Eilat Dr.-Ing. Ali Inan Vice-President / Head of Development EFR GmbH MV/LV networks becoming Smart Grids: Changes / Implications

More information

Program. 5 Day IEC Seminar and Training. XXXX Automation & Information Systems XXXX

Program. 5 Day IEC Seminar and Training. XXXX Automation & Information Systems XXXX , 2010 Program 5 Day IEC 61850 Seminar and Training XXXX Automation & Information Systems XXXX 18.-22.01.2010 Notes: 1. Questions and discussions during and after each presentation are expected and welcome.

More information

HARDWARE OF SUPERVISORY CONTROL & DATA ACQUISITION SYSTEM

HARDWARE OF SUPERVISORY CONTROL & DATA ACQUISITION SYSTEM Chapter 3 HARDWARE OF SUPERVISORY CONTROL & DATA ACQUISITION SYSTEM Dr. H.K. VERMA Distinguished Professor Department of Electrical and Electronics Engineering School of Engineering and Technology SHARDA

More information

Application RTU560 RJ45 RJ45. Management. Switch RJ45 RJ45. Switch 560NMS34 SDSL. Data Sheet Switch 560NMS34. Port 1. Port 2. Port 3.

Application RTU560 RJ45 RJ45. Management. Switch RJ45 RJ45. Switch 560NMS34 SDSL. Data Sheet Switch 560NMS34. Port 1. Port 2. Port 3. Switch 560NMS34 Application The RTU component 560NMS34 is a managed plug and play Layer2-switch providing four Fast auto-negotiating RJ45-ports with auto MDI/X (Automatic Crossover Detection and Correction)

More information

Grid Automation packaged solutions Optimal automation of medium voltage grids

Grid Automation packaged solutions Optimal automation of medium voltage grids Grid Automation packaged solutions Optimal automation of medium voltage grids Application principles of the Zone concept Grid Automation (GA) packaged solutions The zone concept offers a method to analyze

More information

Embedded Powerline Communication in Large Scale Distribution Automation and Demand Side Management System

Embedded Powerline Communication in Large Scale Distribution Automation and Demand Side Management System Embedded Powerline Communication in Large Scale Distribution Automation Dem Side Management System LiPing Lu, JianHua Zhou, Jian Hu, GangYan Li, YeQiong Song Abstract Implementation of Distribution Automation

More information

CH : 15 LOCAL AREA NETWORK OVERVIEW

CH : 15 LOCAL AREA NETWORK OVERVIEW CH : 15 LOCAL AREA NETWORK OVERVIEW P. 447 LAN (Local Area Network) A LAN consists of a shared transmission medium and a set of hardware and software for interfacing devices to the medium and regulating

More information

Grid Automation Controller COM600 How it fits into the Smart Grid?

Grid Automation Controller COM600 How it fits into the Smart Grid? ABB Oy Distribution Automation Grid Automation Controller How it fits into the Smart Grid? May 27, 2014 Slide 1 1MRS756763 E Content Technical Presentation May 27, 2014 Slide 2 Description Grid Automation

More information

Routing protocols in WSN

Routing protocols in WSN Routing protocols in WSN 1.1 WSN Routing Scheme Data collected by sensor nodes in a WSN is typically propagated toward a base station (gateway) that links the WSN with other networks where the data can

More information

Modelling and simulation of a SFN based PLC network

Modelling and simulation of a SFN based PLC network Modelling and simulation of a SFN based PLC network Raul Brito, Gerd Bumiller, Ye-Qiong Song To cite this version: Raul Brito, Gerd Bumiller, Ye-Qiong Song. Modelling and simulation of a SFN based PLC

More information

CO General Specifications GS48D62Z00-00E-N GENERAL. ProSafe-COM extended communication system

CO General Specifications GS48D62Z00-00E-N GENERAL. ProSafe-COM extended communication system General Specifications GS48D62Z00-00E-N CO-962-00 ProSafe-COM extended communication system GENERAL Figure 1 ProSafe-COM extended communication system is a multiple protocol communication interface connecting

More information

Product Overview. Overview CHAPTER

Product Overview. Overview CHAPTER CHAPTER 1 This chapter provides a brief introduction to the Cisco TV Content Delivery System for an Interactive Services Architecture (ISA) environment. This chapter covers the following major topics:

More information

SICAM RTUs Ready for the Future

SICAM RTUs Ready for the Future SICAM RTUs Ready for the Future, RC-AT EM DG PRO LM siemens.com SICAM RTUs News Overview SICAM A8000 Series SICAM Engineering SICAM AK3 Page 2 SICAM RTUs News Overview SICAM A8000 Series SICAM Engineering

More information

THE MOST EFFECTIVE TOOL TO MANAGE AND VISUALIZE YOUR INDUSTRIAL ETHERNET NETWORK AND CONNECTED DEVICES. Network Vision Inc.

THE MOST EFFECTIVE TOOL TO MANAGE AND VISUALIZE YOUR INDUSTRIAL ETHERNET NETWORK AND CONNECTED DEVICES. Network Vision Inc. THE MOST EFFECTIVE TOOL TO MANAGE AND VISUALIZE YOUR INDUSTRIAL ETHERNET NETWORK AND CONNECTED DEVICES. Industrial Automation Networks Ethernet deployment on the factory floor is expanding at an accelerating

More information

SCADA. SurvalentONE. STC Explorer

SCADA. SurvalentONE. STC Explorer SurvalentONE SCADA SurvalentONE SCADA Survalent SCADA is a software automation solution to provide real-time control and data acquisition for utility operations. Survalent SCADA software includes STC Explorer

More information

SCADA Protocols. Overview of DNP3. By Michael LeMay

SCADA Protocols. Overview of DNP3. By Michael LeMay SCADA Protocols Overview of DNP3 By Michael LeMay Introduction DNP3 used for communications between SCADA masters (control centres) and remote terminal units (RTUs) and/or intelligent electronic devices

More information

Architecture for SCADA with Mobile Remote Components

Architecture for SCADA with Mobile Remote Components Architecture for SCADA with Mobile Remote Components ROSSLIN JOHN ROBLES 1, TAI-HOON KIM 1 1 Multimedia Engineering Department, Hannam University 133 Ojeong-dong, Daeduk-gu, Daejeon, Korea rosslin_john@yahoo.com,

More information

Advanced metering SOLUTIONS. Landis+Gyr advantis ADVANTIS SHORT SYSTEM DESCRIPTION. H a en

Advanced metering SOLUTIONS. Landis+Gyr advantis ADVANTIS SHORT SYSTEM DESCRIPTION. H a en Advanced metering SOLUTIONS Landis+Gyr advantis ADVANTIS SHORT SYSTEM DESCRIPTION H 71 0200 0473 a en Revision history Index Date Comments a 23.01.2007 First Edition Subject to change without notice. Landis+Gyr

More information

Designing a new IEC substation architecture

Designing a new IEC substation architecture Designing a new IEC 61850 substation architecture Gerrit Dogger Senior Product and Application Specialist Cooper Power Systems gerrit.dogger@cybectec.com Garry Tennese Station Integration Specialist Manitoba

More information

We are securing the past in a fast moving future. FOX605 multiservice platform.

We are securing the past in a fast moving future. FOX605 multiservice platform. CO M M U N I C AT I O N N E T W O R K S We are securing the past in a fast moving future. FOX605 multiservice platform. 3 FOX605 MULTISERVICE PLATFORM FOR UTILITY NETWORKS Operational networks of utilities

More information

Relion 630 series. Load-shedding controller PML630 High performing load-shedding solution for industrial and utility power networks

Relion 630 series. Load-shedding controller PML630 High performing load-shedding solution for industrial and utility power networks Relion 630 series Load-shedding controller PML630 High performing load-shedding solution for industrial and utility power networks Integrated load-shedding and protection solution The PML630 is a freely-configurable

More information

Interface The exit interface a packet will take when destined for a specific network.

Interface The exit interface a packet will take when destined for a specific network. The Network Layer The Network layer (also called layer 3) manages device addressing, tracks the location of devices on the network, and determines the best way to move data, which means that the Network

More information

A2000 Multifunctional Power Meter

A2000 Multifunctional Power Meter 3-348-980-03 3/12.99 Capable of communications via Profibus-DP, LONWORKS interface or RS 485 interface (depending upon model) Measurement of current, voltage, active, reactive and apparent power, power

More information

COMMUNICATION NETWORKS. FOX615/612 TEGO1 IEC GOOSE Proxy Gateway interface module.

COMMUNICATION NETWORKS. FOX615/612 TEGO1 IEC GOOSE Proxy Gateway interface module. COMMUNICATION NETWORKS FOX615/612 TEGO1 IEC 61850 GOOSE Proxy Gateway interface module. 2 FOX615/612 TEGO1 IEC 61850 GOOSE GATEWAY INTERFACE MODULE INTRODUCTION 3 FOX615/612 multiplexing platform. Enabling

More information

Unit 5: Internet Protocols skong@itt-tech.edutech.edu Internet Protocols She occupied herself with studying a map on the opposite wall because she knew she would have to change trains at some point. Tottenham

More information

NETWORKING COMPONENTS

NETWORKING COMPONENTS 1) OBJECTIVES NETWORKING COMPONENTS The objectives of this chapter are to familiarize with the following: - i) The LAN components ii) iii) iv) Repeater Hub Bridge v) Router vi) Gateway 2) INTRODUCTION

More information

Chapter 6: Network Communications and Protocols

Chapter 6: Network Communications and Protocols Learning Objectives Chapter 6: Network Communications and Protocols Understand the function and structure of packets in a network, and analyze and understand those packets Understand the function of protocols

More information

Complete Power-Line Narrow Band System for U ban- Wide Communication /

Complete Power-Line Narrow Band System for U ban- Wide Communication / Complete Power-Line Narrow Band System for U ban- Wide Communication / Gerd Burniller, Markus Sebeck GmbH Unterschlauersbacher-Hauptstr. 10, D-90613 GroDhabersdorf, Germany Phone: +49 9 105 9960-5 1, Fax:

More information

Substa'on Automa'on and SCADA The Key to efficiency. Empowering Lives

Substa'on Automa'on and SCADA The Key to efficiency. Empowering Lives Substa'on Automa'on and SCADA The Key to efficiency Girish Chaitanya Director- Opera3ons Venson Electric Pvt. Ltd. Bangalore E- mail: girishc@vensonelectric.com Mobile: +91 98457 60970 What SAS Introduc3on

More information

CAISO RIG Acceptance Test Procedure

CAISO RIG Acceptance Test Procedure CAISO RIG Acceptance Test Procedure TABLE OF CONTENTS 1.0 PURPOSE... 3 2.0 INTRODUCTION... 3 3.0 TEST PROCEDURE... 8 Market Services/ EDAS CAISO Public Revision History 1.0 PURPOSE The procedure is intended

More information

Smart Grids, Telecontrol and the New Standards. Reliable and secure communication with zenon Process Gateway

Smart Grids, Telecontrol and the New Standards. Reliable and secure communication with zenon Process Gateway Smart Grids, Telecontrol and the New Standards Reliable and secure communication with zenon Process Gateway Smart Grids, Telecontrol and the New Standards Reliable and secure communication with zenon Process

More information

DISTRIBUTION CONTROL CENTER OF DISTRIBUTION UTILITY "ELEKTROSTRUMICA", STRUMICA (THE REPUBLIC OF MACEDONIA)

DISTRIBUTION CONTROL CENTER OF DISTRIBUTION UTILITY ELEKTROSTRUMICA, STRUMICA (THE REPUBLIC OF MACEDONIA) DISTRIBUTION CONTROL CENTER OF DISTRIBUTION UTILITY "ELEKTROSTRUMICA", STRUMICA (THE REPUBLIC OF MACEDONIA) Konar-Inženjering za energetiku i transport d.d., Fallerovo šetalište 22, Zagreb, Hrvatska E.

More information

Revision 1.2. July 24, COM Protocol Manual. for MDC and ADC N 11th St - San Jose CA

Revision 1.2. July 24, COM Protocol Manual. for MDC and ADC N 11th St - San Jose CA Revision 1.2 July 24, 2017 COM Protocol Manual for MDC and ADC www.mountztorque.com - 1080 N 11th St - San Jose CA 95112-408.292.2214 1 1 Overview and Communication Specifications 1.1 Overview If the PC

More information

Importance of Interoperability in High Speed Seamless Redundancy (HSR) Communication Networks

Importance of Interoperability in High Speed Seamless Redundancy (HSR) Communication Networks Importance of Interoperability in High Speed Seamless Redundancy (HSR) Communication Networks Richard Harada Product Manager RuggedCom Inc. Introduction Reliable and fault tolerant high speed communication

More information

Research on Heterogeneous Network Integration in Distribution Communication Network

Research on Heterogeneous Network Integration in Distribution Communication Network Research on Heterogeneous Integration in Distribution Communication Wei Li 1, Haonan Zheng 1, Hui He 1 1 (School of Control and Computer Engineering, North China Electric Power University, China) Abstract:

More information

DDL DEVELOPMENT FOR APPLICATIONS BASED ON HART PROTOCOL. Alexandre Baratella Lugli and Ana Carolina de Oliveira Patrício

DDL DEVELOPMENT FOR APPLICATIONS BASED ON HART PROTOCOL. Alexandre Baratella Lugli and Ana Carolina de Oliveira Patrício International Journal of Innovative Computing, Information and Control ICIC International c 2018 ISSN 1349-4198 Volume 14, Number 2, April 2018 pp. 549 560 DDL DEVELOPMENT FOR APPLICATIONS BASED ON HART

More information

Quick Start Guide PROFINET Switch 4/8-port. Version. 1en.

Quick Start Guide PROFINET Switch 4/8-port. Version. 1en. Quick Start Guide PROFINET Switch 4/8-port Version 1en www.helmholz.de Contents 1. Introduction 3 2. Preparing the PROFINET switch 4 3. Project planning for PROFINET switch 4 4. Setting the port properties

More information

DECS 2.0 Danfoss Energy Control System

DECS 2.0 Danfoss Energy Control System Operating Guide DECS 2.0 Danfoss Energy Control System English version www.danfoss.com Table of Contents Page Introduction 3 DECS 2.0 3 Important product information 4 Application examples 5 Accessing

More information

Prof. Shervin Shirmohammadi SITE, University of Ottawa. Internet Protocol (IP) Lecture 2: Prof. Shervin Shirmohammadi CEG

Prof. Shervin Shirmohammadi SITE, University of Ottawa. Internet Protocol (IP) Lecture 2: Prof. Shervin Shirmohammadi CEG Lecture 2: Internet Protocol (IP) Prof. Shervin Shirmohammadi SITE, University of Ottawa Prof. Shervin Shirmohammadi CEG 4185 2-1 Network Layer Provides the upper layers with independence from the data

More information

Object Model of Home Area Network Devices

Object Model of Home Area Network Devices Object Model of Home Area Network Devices ZDENEK BRADAC*, VACLAV KACZMARCZYK**, PETR FIEDLER**, MICHAL SIR* *Department of Control and Instrumentation, Brno University of Technology, Brno, CZECHREPUBLIC

More information

Control and Protection System Win-TDC

Control and Protection System Win-TDC HVDC Control & Protection Control and Protection System Win-TDC HVDC Aysen -SIC Basics of HVDC Basic Design Equipment Info Control & Protection Station Design Logistics Project Management Maintenance 1

More information

COMPANY PROFILE

COMPANY PROFILE COMPANY PROFILE Table of contents The company Mission & Vision Products irtu/igw family icontrol SCADA Partners Customers & Projects The company igrid T&D joins a multidisciplinary team of professional

More information

Econair. An advanced energy saving technology

Econair. An advanced energy saving technology Econair An advanced energy saving technology Overview The Econair is an intelligent Home Automation system, introducing into market a high level for energy saving, with expandable features of security

More information

Managing Site-to-Site VPNs: The Basics

Managing Site-to-Site VPNs: The Basics CHAPTER 23 A virtual private network (VPN) consists of multiple remote peers transmitting private data securely to one another over an unsecured network, such as the Internet. Site-to-site VPNs use tunnels

More information

Profibus DP Driver for JMobile

Profibus DP Driver for JMobile Profibus DP Driver for JMobile This Technical Note contains the information needed to connect the HMI to control devices using the Profibus DP protocol. Exor International S.p.A. ptn0422 Ver. 1.01 Copyright

More information

Network Code on Emergency and Restoration - Implementation Guide for the Communication Systems Requirements. Final VERSION

Network Code on Emergency and Restoration - Implementation Guide for the Communication Systems Requirements. Final VERSION Network Code on Emergency and Restoration - Implementation Guide for the Communication Systems Requirements Final VERSION September 2018 1 TABLE OF CONTENTS 1 INTRODUCTION... 3 1.1 COMMUNICATION SYSTEM

More information

Plant / field level Process

Plant / field level Process FM Telecontrol Protocol DNP3 (Distributed Network Protocol) DNP3 is telecontrol protocol that is primarily used in North America, the UK and Australia. It is used for data exchange between power generation

More information

6.1.2 Repeaters. Figure Repeater connecting two LAN segments. Figure Operation of a repeater as a level-1 relay

6.1.2 Repeaters. Figure Repeater connecting two LAN segments. Figure Operation of a repeater as a level-1 relay 6.1.2 Repeaters A single Ethernet segment can have a maximum length of 500 meters with a maximum of 100 stations (in a cheapernet segment it is 185m). To extend the length of the network, a repeater may

More information

Kepware Whitepaper. A New Distributed Architecture for Remote Communications

Kepware Whitepaper. A New Distributed Architecture for Remote Communications Kepware Whitepaper A New Distributed Architecture for Remote Communications By: Tony Paine, President and CEO Kepware Technologies, and Russel Treat, President and CEO EnerSys Corporation Introduction

More information

I/A Series Remote Terminal Unit (RTU) RTU 20 for Oil, Gas, and Water SCADA Applications

I/A Series Remote Terminal Unit (RTU) RTU 20 for Oil, Gas, and Water SCADA Applications I/A Series Remote Terminal Unit (RTU) RTU 20 for Oil, Gas, and Water SCADA Applications RTU 20 OVERVIEW The I/A Series RTU 20 is an Intelligent Remote Device capable of performing a full range of control

More information

Prepared by Agha Mohammad Haidari Network Manager ICT Directorate Ministry of Communication & IT

Prepared by Agha Mohammad Haidari Network Manager ICT Directorate Ministry of Communication & IT Network Basics Prepared by Agha Mohammad Haidari Network Manager ICT Directorate Ministry of Communication & IT E-mail :Agha.m@mcit.gov.af Cell:0700148122 After this lesson,you will be able to : Define

More information

Control and Monitoring of the Front-End Electronics in ALICE

Control and Monitoring of the Front-End Electronics in ALICE Control and Monitoring of the Front-End Electronics in ALICE Peter Chochula, Lennart Jirdén, André Augustinus CERN, 1211 Geneva 23, Switzerland Peter.Chochula@cern.ch Abstract This paper describes the

More information

UNIT-II OVERVIEW OF PHYSICAL LAYER SWITCHING & MULTIPLEXING

UNIT-II OVERVIEW OF PHYSICAL LAYER SWITCHING & MULTIPLEXING 1 UNIT-II OVERVIEW OF PHYSICAL LAYER SWITCHING & MULTIPLEXING Syllabus: Physical layer and overview of PL Switching: Multiplexing: frequency division multiplexing, wave length division multiplexing, synchronous

More information

Inform IT Information Management Tenore. SCADA Extension ABB

Inform IT Information Management Tenore. SCADA Extension ABB ABB Introduction Thanks to the power of its Information Platform, and to the versatility of its architecture, Tenore can easily be employed as a Supervisory and Control Station in a SCADA system for the

More information

November 29, ECE 421 Session 28. Utility SCADA and Automation. Presented by: Chris Dyer

November 29, ECE 421 Session 28. Utility SCADA and Automation. Presented by: Chris Dyer ECE 421 Session 28 November 29, 2018 Utility SCADA and Automation Presented by: Chris Dyer Utility SCADA & Automation Chris Dyer, P.E. BSEE University of Idaho, 1997 SCADA & Automation Engineer POWER Engineers,

More information

IEEE 1588v2 Time Synchronization in Energy Automation Applications Case Studies from China

IEEE 1588v2 Time Synchronization in Energy Automation Applications Case Studies from China IEEE 1588v2 Time Synchronization in Energy Automation Applications Case Studies from China Real Time Communications Symposium Munich, January 2012 Maciej Goraj maciejgoraj@ruggedcom.com 1 Who is RuggedCom?

More information

Ovation Ethernet Link Controller Module Data Sheet

Ovation Ethernet Link Controller Module Data Sheet Ovation Ethernet Link Controller Module Features: Provides native Ethernet connectivity capability at the I/O level Enables faster, more efficient integration of robust data from third-party devices Dedicated

More information

E-Commerce. Infrastructure I: Computer Networks

E-Commerce. Infrastructure I: Computer Networks E-Commerce Infrastructure I: Computer Networks Almost all computers today are networked or part of a distributed system. I will provide an overview of networking and a basic description of network technology.

More information

MiCOM P141, P142, P143, P144 & P145 (SC) The MODBUS interface is a master/slave protocol and it is defined by MODBUS.

MiCOM P141, P142, P143, P144 & P145 (SC) The MODBUS interface is a master/slave protocol and it is defined by MODBUS. ADA Communications P14x/EN /De6 MiCOM P141, P142, P143, P144 & P145 () 13-21 3. MODBUS INTERFACE The MODBUS interface is a master/slave protocol and it is defined by MODBUS.org: See www.modbus.org MODBUS

More information

October 05, ECE 421 Session 12. Utility SCADA and Automation. Presented by: Chris Dyer

October 05, ECE 421 Session 12. Utility SCADA and Automation. Presented by: Chris Dyer ECE 421 Session 12 October 05, 2017 Utility SCADA and Automation Presented by: Chris Dyer Utility SCADA & Automation Chris Dyer, P.E. BSEE University of Idaho, 1997 SCADA & Automation Engineer POWER Engineers,

More information

Chapter 2 State Estimation and Visualization

Chapter 2 State Estimation and Visualization Chapter 2 State Estimation and Visualization One obvious application of GPS-synchronized measurements is the dynamic monitoring of the operating conditions of the system or the dynamic state estimation

More information

IE102: SCADA Programming, Maintenance & Troubleshooting

IE102: SCADA Programming, Maintenance & Troubleshooting IE102: SCADA Programming, Maintenance & Troubleshooting IE102 Rev.001 CMCT COURSE OUTLINE Page 1 of 5 Training Description: This course is designed to provide a thorough understanding of the fundamental

More information

Q.brixx station 101. Base Unit with Test Controller. Most important features:

Q.brixx station 101. Base Unit with Test Controller. Most important features: Most important features: Q.brixx base unit consists of side handles, Test Controller Q.brixx station and power supply unit, ready for 14 measurement modules in the same housing and up to 32 plug-in modules

More information

Signaling System 7 (SS7) By : Ali Mustafa

Signaling System 7 (SS7) By : Ali Mustafa Signaling System 7 (SS7) By : Ali Mustafa Contents Types of Signaling SS7 Signaling SS7 Protocol Architecture SS7 Network Architecture Basic Call Setup SS7 Applications SS7/IP Inter-working VoIP Network

More information

SIGMA. Advanced Generator Protection and Control. Short Form Catalogue

SIGMA. Advanced Generator Protection and Control. Short Form Catalogue Short Form Catalogue SIGMA Advanced Generator Protection and Control Generator protection, synchronizing and load sharing Power management system Easy to install and commission Control most governors/avrs

More information

Table of Contents Chapter 1 MSTP Configuration

Table of Contents Chapter 1 MSTP Configuration Table of Contents Table of Contents... 1-1 1.1 MSTP Overview... 1-1 1.1.1 MSTP Protocol Data Unit... 1-1 1.1.2 Basic MSTP Terminologies... 1-2 1.1.3 Implementation of MSTP... 1-6 1.1.4 MSTP Implementation

More information

Using Time Division Multiplexing to support Real-time Networking on Ethernet

Using Time Division Multiplexing to support Real-time Networking on Ethernet Using Time Division Multiplexing to support Real-time Networking on Ethernet Hariprasad Sampathkumar 25 th January 2005 Master s Thesis Defense Committee Dr. Douglas Niehaus, Chair Dr. Jeremiah James,

More information

GSM GSM TECHNICAL May 1996 SPECIFICATION Version 5.0.0

GSM GSM TECHNICAL May 1996 SPECIFICATION Version 5.0.0 GSM GSM 04.63 TECHNICAL May 1996 SPECIFICATION Version 5.0.0 Source: ETSI TC-SMG Reference: TS/SMG-030463Q ICS: 33.060.50 Key words: Digital cellular telecommunications system, Global System for Mobile

More information

Delivering Voice over IEEE WLAN Networks

Delivering Voice over IEEE WLAN Networks Delivering Voice over IEEE 802.11 WLAN Networks Al Petrick, Jim Zyren, Juan Figueroa Harris Semiconductor Palm Bay Florida Abstract The IEEE 802.11 wireless LAN standard was developed primarily for packet

More information

Chapter 12: Multiprocessor Architectures

Chapter 12: Multiprocessor Architectures Chapter 12: Multiprocessor Architectures Lesson 03: Multiprocessor System Interconnects Hierarchical Bus and Time Shared bus Systems and multi-port memory Objective To understand multiprocessor system

More information

LION SAFE Remote I/O System. LÜTZE TRANSPORTATION GMBH Dimitrios Koutrouvis V00

LION SAFE Remote I/O System. LÜTZE TRANSPORTATION GMBH Dimitrios Koutrouvis V00 Page 1 LÜTZE TRANSPORTATION GMBH Dimitrios Koutrouvis V00 Actual Market Situation New Safety Requirements from Standards and Authorities Governance European Union (EU) ==> European Railway Agency (ERA)

More information

Kyland solution for IEEE1588 Precision Time Synchronization in Electric Utilities

Kyland solution for IEEE1588 Precision Time Synchronization in Electric Utilities Kyland solution for IEEE1588 Precision Time Synchronization in Electric Utilities IEEE1588 v2 In measurement and control systems there is often a need to synchronize distributed clocks. Traditionally,

More information

STEP 7. Function. Page 1791 Mar 2008 Siemens ITS

STEP 7. Function. Page 1791 Mar 2008 Siemens ITS STEP 7 Function STEP 7 blocks STEP 7 files all user-written programs and all the data required by those programs in blocks. The possibility of calling other blocks within one block, as though they were

More information

POWER GRID AUTOMATION. Pág.. n. RMU Automation

POWER GRID AUTOMATION. Pág.. n. RMU Automation POWER GRID AUTOMATION RMU Automation Distribution Network Non-Controlled Secondary Distribution Systems Distribution Network RMU Automation - Levels RMU Automation - RTU / FRTU SMART CONTROLLER Monitoring

More information