Object Model of Home Area Network Devices

Size: px
Start display at page:

Download "Object Model of Home Area Network Devices"

Transcription

1 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 **Materials for Sensors and Technological Processes Control Systems, Central European Institute of Technology, Brno, CZECH REPUBLIC Abstract:Smart Grid solutions, combinations of power and communication networks, are getting popular nowadays. In this paper, we focus on the Home Area Network (HAN), the part of the Smart Grid. We intend to create the Home Area Network software simulation framework. This framework will consist of network coordinator that provide network master functionality and arbitrary number of smart home appliances, network slaves. With this framework, we can develop and simulate HAN control and scheduling algorithms. Moreover, in the future we would like to implement and test with this framework smart bidirectional charger of electrical vehicles. Key-Words: Home Area Network, Smart Appliance, Home Coordinator, Network Model, Simulation Introduction 1.1. Smart Grid Network The SmartGrid means the electric distribution network that is able to autonomously detect and control connected devices (both producers and consumers) behavior to maximize the consumption efficiency, delivery reliability in the whole network and transport losses minimization. Both producers and consumers can be joined to the distribution process when SmartGrid approaches are applied. Local producers can have possibility to effectively deliver electric power to the distribution network. Consumers may be motivated to schedule the energy consumption according to the distribution demands (e.g. by lower energy price). The main problem of the distribution network is the irregular consumption, which leads to energy peaks [1]. During these peaks the consumption grows rapidly up to 30 % and by their elimination, necessary investments in the distribution network can be reduced. One of possible reduction methods is to schedule the consumption to the time (of the day), when there is energy surplus. Another method is the dynamic connection of RE resources during the consumption peaks. Last but not least important is minimizing distribution losses (during transformation and transmission), because these can comprise up to 14 % of the total amount of transferred energy [1]. This minimization can be achieved by the proper energy flow management in local scope transferring energy between local producers and local consumers minimize longdistance transmissions Smart Grid network concept The SmartGrid network consists of power (see Fig. 2), communication and information technologies to the heterogeneous system. To achieve properties mentioned in previous paragraphs, the network shall fulfill several requirements [5]. Distributed control all network elements are connected by the communication line. Generators and appliances can be controlled either locally or can take decisions autonomously. Power consumption prediction for several hours nowadays, these predictions are common in the global scope (distribution of large amounts of energy) and should be adapted to local areas as well. Power generation prediction prediction from RE resources is usually difficult because of their dependency on current weather (sun shine, wind). If the weather in the place of installation is forecast, the power production can be predicted. ISBN:

2 Response time to achieve the peak minimization, the network shall react in sufficient time and perform proper decisions, e.g. connect backup power sources, restrict the consumption and thus redirect energy flows to areas with energy shortage. Unused electric vehicles batteries can work as backup power sources. Power consumption restrictions can be accomplished by its scheduling based on e.g. variable energy unit price. Fig. 2 Smart Grid Network Not only to achieve all mentioned requirements, but for its whole functionality, the SmartGrid network uses large amount of different technologies. The interoperability between all technologies is thus crucial. This interoperability is divided into several levels (layers). The lowest layer should e.g. guarantee compatible plugs among several manufacturers. Higher layers then ensure compatibility of communication protocols and business transactions Communication model The Communication model is not the aim of this paper Object model Functional blocks defined by EN specify the functionality implemented and provided by an appliance. Each functional block represents one functional area, i.e. domain. Execute commands is a set of basic messages used to control remotely Household Appliances and to program appliances. Examples of control are START, STOP. An example of programming is Program data. Signal state is a set of basic states used to monitor the state of the Household Appliances by remote means (central controller, etc.). The basic states are static states of the product and are used to monitor the appliance functionality, e.g. STAND BY, RUNNING. Not all defined states are mandatory. Signal event is a functional block to provide appliance event information on the bus. The remote device could be a controller with a display or a gateway. Devices interested in receiving event information can specify whether to receive all the information or only part of it. Identify product is a functional block to provide product information. Identification data are persistent data, i.e. they are kept even when the appliance is switched off Home Area Network Home Area Network (HAN) (see Fig. 3) is a local part of the Smart Grid network. As HAN is usually marked the network behind the local power meter. HAN consists of following devices electric meter, smart appliances, smart plugs, operator panels and home coordinator. Following paragraphs describe intended functions of these devices [4]. 2 EN Specification From the functional point of view, the EN50523 defines two kinds of devices and network model: Communication model Object model Fig. 3 Home Area Network Collect diagnosis data is a functional block to provide diagnosis data. There are several ISBN:

3 approaches how to get diagnosis data from the appliance and several diagnosis data organizational structures. Manage time is a functional block to provide time reference and possibly to update time reference through a trusted clock. Application error management is a functional block defining the behavior of appliances in case of application errors. In the following chapter, we create a fundamental kernel of coordinator and home appliances and we describe how above mentioned functional blocks are implemented. 3 Device models 3.1. Home Coordinator device Introduction Home Coordinator device (Home Area Network Master), as described in chapter 1, is the device controlling all devices inside the network. The model, we present in this chapter, is significantly simplified. We have focused mainly to communication and control parts. For the sake of clarify, we have created simple GUI to the model, but most of functionality of the real home coordinator (e.g. comfortable control, creation of statistics, web server etc.) has been omitted. Both models, the coordinator and appliance models are part of HAN simulation framework. This framework contains also its specific communication protocol, for the purpose of demonstration, The coordinator device model has been developed as a set of mutually dependent objects in a c# language (.NET platform). During development, the object oriented development approach has been applied.the coordinator is thus a set of several object wrapped by the BasicCoordinator class.the inner functionality of the device can be divided into two main groups: Periodical specific functions are called periodically, e.g. functions for particular time Fig. 4 Coordinator device simplified class diagram ISBN:

4 slot computation. Event based functions depending either by receiving message from smart appliance, command from user etc. Here we focus on two main objects (coordinator logical parts) communication and control interface. The communication interface can embed any appropriate object (i.e. one can implement any communication protocol layer and use it). The communication part is connected with the control part through generated events. This connection always allows much higher variability than connection through function calls Object model Here we describe the control interface in detail.in the Fig. 4 the whole control interface is shown as a class diagram. The fundamental class, BasicCoordinatorimplements the basic functionality of the device. It mainly allows connection of all device parts together. The BasicCoordinator functionality has been extended by implementing class ProfiledCoordinator. This class contains all necessary methods to maintain information about scheduling with respect to power profiles. Note this class is embedding ProfileManager and PriceManagerclasses. These classes take some parts of ProfiledCoordinator functionality over. ProfileManagerdeals with all smart appliances data and converts them to format more suitable to be processed by solving algorithm.pricemanager is the class implementing price value detection and decision and prediction functionality. The PriceManager class or its inherited classes should contain functionality to obtain the energy price from the Smart Grid network. This functionality is not yet implemented in the simulation framework. Instead, we use predefined electricity price curves.profiledcoordinator class is responsible for evaluating the appliances scheduling plan. The interface IAlgorithm, used by ProfiledCoordinatorcontains Init(), Solve( ), and Close() functions. These functions are called from ProfiledCoordinator before scheduling process starts, when a time window expires and new scheduling plan is requested, and before the coordinator is shut down. The BasicCoordinatoruses the class AppliancesList to keep state information of all connected appliances. This class maintains a list of BasicApplianceWrapper instances. Each of these objects fully describes basic state of the connected appliance (it is equivalent to some kind of stamp or facade representing only state variables and information, but no functionality). When new appliance is found in the network, after detailed identification its stamp is added to this list. If appliance is inactive for some defined period, its stamp is automatically removed from the list. In the Fig. 4 one can see that there are several classes inherited from the BasicApplianceWrapper. Objects of these types (Controlled and Profiled ) can also be added to the list. Such objects represent smart appliances with additional functionality. AppliancesList implements basic network functionality, automatic appliance addressing (so called appliance detection and configuration), and death appliances detection. Moreover, this class implements periodic appliances query. By this query appliances can only autonomously send (i.e. respond) message to the coordinator. BasicApplianceWrapperimplements basic appliance connectable to the network. ControlledApplianceWrapperimplements appliance stamp with control function. Such appliances thus can be controlled by simple commands (start, stop, wait and others defined in [6]). This class is also responsible for detecting state responses send autonomously by appliances. ProfiledApplianceWrapperis yet more sophisticated stamp implementing power profile support. That means active power profileset in appliance is transferred by the network and remembered by this stamp Control based on power profile The ProfileManager class (that can be found in the Fig. 4)implements converting algorithm. This algorithm converts data stored inside all ProfiledApplianceWrapper stamps and converts them to data appropriate for the mixed integer linear programming (MILP) problem solver. MILP solver should implement interface IAlogrithm. Then the MILP solver could be used to calculate appliances scheduling problem Smart Appliance The Smart Appliance, as the network slave device is from the functional and communication point of view defined as a set of objects, mutually bound by function calls and events.the object ISBN:

5 oriented modelling and programming is thus used to implement it. The basic class CommonAppliance is used to embed and connect all device modules. The communication interface, as well as the device s runtime object model is initialized by this class. The communication interface functionality is quite straightforward, so it is not the aim of this paper to describe it. In the following subchapters we focus on the runtime object model and to communication events processing (i.e. communication frame reception) Runtime object model Every smart appliance model consists of nonempty set of functional blocks, so called clusters. Every cluster defines State attributes set of variables and constants defined by the cluster. Commands received set of commands that can be received and answered by the cluster. Commands generated set of commands that can be autonomously generated by the cluster. The class diagram of the smart appliance is shown in Fig. 5. One can see the appliance kernel (CommonAppliance). All cluster classes are inherited from the CommonCluster class. We can see the method Received(). When the CommonAppliance class receives a communication frame, it calls, one by one, this function in all defined clusters.inside every cluster, the frame type and other significant parameters are compared with inner list of supported frames and if the frame is supported, the cluster generates response to it. The situation that two or more clusters generate the response frame is allowed. This situation occurs usually as a response to query frame (clusters are responding by generated events). In that case, one cluster is served and others should wait until another query frame is received. Coordinator should send the query frame to every device periodically with sufficient time interval. Every slave device should include at least one cluster instance of IdentificationCluster. This cluster specifies detailed device information, e.g. model name, vendor id, product type, revision, serial number etc. Other clusters are not mandatory Cluster example For the sake of clarify, we show here the detailed description of one cluster of type ControlCluster. Following paragraph shows three types of entities Fig. 5 Smart appliance simplified class diagram defined by this cluster (defined earlier in this chapter). State attributes: ApplianceStatus present state of the appliance. There are several predefined states in [6]. EnergyManagementEnabled defines whether the appliance can be remotely controlled. StartTime desired start time of the appliance cycle. EndTime desired end time of the appliance cycle. Commands received Execution frame contains the desired appliance status. If energy management is enabled, the device makes effort to change state to the desired one. TimeSpan frame contains desired start or end time. Coordinator can thus force these values to the appliance. StateQuery query frame to obtain generated events from the appliance. Commands generated: SignalState event generated and frame sent when the appliance status changes. TimeSpan event generated and frame sent when appliance start or end time changes. ISBN:

6 4 Conclusion and future work The paper describedobject models of home coordinator device (HAN master device) and smart appliances (HAN slave device). Object models and devices functionality is based on EN specification [6]. Simplified class diagrams of both master and slave devices were presented and specific classes were described. Models, together with our communication protocol (described in another paper of same authors)comprise the simulation framework, as is presently implemented. As a future work, we propose implementation of Mixed Integer Linear Programming solver to the coordinator device. When the electricity price is obtained from the Smart Grid, the coordinatorcan work and schedule Home Area Network appliances effectively. Acknowledgement: This work was partially realized in CEITEC Central European Institute of Technology with research infrastructure supported by the project CZ.1.05/1.1.00/ financed from European Regional Development Fund, by ARTEMIS project Internet of Energy for Electric Mobility (project no ), partially by Grant Agency of the Czech Republic (102/09/H081 SYNERGY Mobile Sensoric Systems and Network) and partially the Supporting research of modern methods and approaches in automation from the Internal Grant Agency of Brno University of Technology (FEKT- S-11-6). References: [1] Xinghuo, Y. et al. (2011). The New Frontier of Smart Grids. IEEE Industrial Electronics, Volume 5, Number 3, pages [2] Pavlátka, et al. (2011). Strategickézměny v energetickýchsoustavách. Elektroenergetika, volume 3, pages [3] The Energy@Home Technical Team, (2010). Energy@Home technical specification, [4] The Energy@Home Technical Team, (2010). Energy@home: a User-Centric Energy Management System [5] IEEE IEEE Guide for Smart Grid Interoperability of Energy Technology and Information Technology Operation with the Electric Power System (EPS), End-Use Applications, and Loads. (2011). New York, USA : The Institute of Electrical and Electronics Engineers, Inc., 110 pages. ISBN [6] EN Household appliances interworking - Part 1: Functional specification. (2009) Brussels, Belgium. CENELEC. 78 pages. [7] Microsoft Solver Foundation [8] Kaczmarczyk, V. Sir, M. Bradac, Z.: Ethernet Powerlink Asynchronous Phase Examination. (2011). Corfu Island, Greece. Recent Researches in Communication and IT. Pages ISBN ISBN:

ETHERNET POWERLINK ASYNCHRONOUS PHASE EXAMINATION

ETHERNET POWERLINK ASYNCHRONOUS PHASE EXAMINATION ETHERNET POWERLINK ASYNCHRONOUS PHASE EXAMINATION VÁCLAV KACZMARCZYK MICHAL ŠÍR ZDENĚK BRADÁČ Department of Control and Instrumentation Brno University of Technology Kolejní 2906/4, Brno CZECH REPUBLIC

More information

Review of IEC/EN Standards for Data Exchange between Smart Meters and Devices

Review of IEC/EN Standards for Data Exchange between Smart Meters and Devices Review of IEC/EN s for Data Exchange between Smart Meters and Devices Erietta Zountouridou, Evangelos Karfopoulos, Stavros Papathanassiou, and Nikos Hatziargyriou National Technical University of Athens,

More information

EEPOS automation and energy management platform Technical documentation of the implemented EEPOS gateway and the related middleware

EEPOS automation and energy management platform Technical documentation of the implemented EEPOS gateway and the related middleware EEPOS - Energy management and decision support systems for energy positive neighbourhoods Co-funded by the European Commission within the 7 th Framework Programme. Grant Agreement no: 600050. 2012-10-01

More information

Multi-Service IP Communication for Metering and Grid Information

Multi-Service IP Communication for Metering and Grid Information Multi-Service IP Communication for Metering and Grid Information JOHN-PAUL KNAUSS Principal Distribution Automation Engineer, National Grid TOM JOHNSON Smart Grid Automation Manager, Itron WHITE PAPER

More information

Designing a System Engineering Environment in a structured way

Designing a System Engineering Environment in a structured way Designing a System Engineering Environment in a structured way Anna Todino Ivo Viglietti Bruno Tranchero Leonardo-Finmeccanica Aircraft Division Torino, Italy Copyright held by the authors. Rubén de Juan

More information

Synchronization of DLMS/COSEM sensor nodes

Synchronization of DLMS/COSEM sensor nodes Synchronization of DLMS/COSEM sensor nodes Alfonso Attianese, Antonio Del Giudice, Marco Landi, Vincenzo Paciello, Antonio Pietrosanto DIIn - University of Salerno - Via Giovanni Paolo II, 132 84084 Fisciano

More information

Options Standard PM+

Options Standard PM+ Maximum plant size 2000 kwp Optional Powermanagement and cos phi control Color TFT-Touch-Display and LCD- Status-Display for displaying graphics and operation Monitor central inverters and SCBs Options

More information

CARILEC. An Association of Electric Utilities

CARILEC. An Association of Electric Utilities CARILEC An Association of Electric Utilities CARILEC Services Training & Development Networking and Knowledge Sharing: Conferences & CAREC Technical Studies and Surveys Disaster Restoration Coordination

More information

Digitalization of energy systems leads to innovation, growth and jobs

Digitalization of energy systems leads to innovation, growth and jobs Digitalization of energy systems leads to innovation, growth and jobs Nikos Hatziargyriou Chairman of the Board and CEO, Hellenic Electricity Distribution Network Operator HEDNO The digital transformation

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

Controlling electrical home appliances, using Bluetooth Smart Technology (October 2015) Pedro José Vieira da Silva

Controlling electrical home appliances, using Bluetooth Smart Technology (October 2015) Pedro José Vieira da Silva 1 Controlling electrical home appliances, using Smart Technology (October 2015) Pedro José Vieira da Silva Abstract This report presents and describes a Home Energy Management system that accomplish Home

More information

Next-generation IT Platforms Delivering New Value through Accumulation and Utilization of Big Data

Next-generation IT Platforms Delivering New Value through Accumulation and Utilization of Big Data Next-generation IT Platforms Delivering New Value through Accumulation and Utilization of Big Data 46 Next-generation IT Platforms Delivering New Value through Accumulation and Utilization of Big Data

More information

Energy Solutions for Buildings

Energy Solutions for Buildings Energy Solutions for Buildings Making energy safe, reliable, efficient, productive and green Make the most of your energy SM 1 Solutions to enable and sustain energy savings Technology is crucial to make

More information

S3C Smart Consumer, Smart Customer, Smart Citizen : The Digital 3C Transformation

S3C Smart Consumer, Smart Customer, Smart Citizen : The Digital 3C Transformation S3C Smart Consumer, Smart Customer, Smart Citizen : The Digital 3C Transformation Maher Chebbo, General Manager Energy EMEA, SAP Chairman of ETP SmartGrids Demand Group & Digital initiative President of

More information

MicroPnP The Zero-Configuration Platform for Wireless Sensing & Actuation

MicroPnP The Zero-Configuration Platform for Wireless Sensing & Actuation MicroPnP The Zero-Configuration Platform for Wireless Sensing & Actuation Nelson Matthys VersaSense NV, Kroegberg 3, B-3000 Leuven, Belgium nelson@versasense.com Jackie Rutter Linear Technology Corporation,

More information

Volt/VAR Control Options and How to Leverage AMI Data

Volt/VAR Control Options and How to Leverage AMI Data By Tom Helmer, Executive Consultant and Joseph Sottnik, P.E., Project Manager, Black & Veatch Published in the August 2012 issue of PowerGrid International Energy efficiency and operational optimization

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

Introduction to Distributed Systems

Introduction to Distributed Systems Introduction to Distributed Systems Other matters: review of the Bakery Algorithm: why can t we simply keep track of the last ticket taken and the next ticvket to be called? Ref: [Coulouris&al Ch 1, 2]

More information

Smart Grid Vision DRAFT FOR DISCUSSION PURPOSES ONLY

Smart Grid Vision DRAFT FOR DISCUSSION PURPOSES ONLY Smart Grid Vision Vision Statement PG&E s vision for the Smart Grid: Smart Grid will leverage advanced communications and control technology to transform the operation of our electric network, from generation

More information

SmartGridCity : Xcel Energy plugs into the smart grid. Presented by: Sandy Simon, Xcel Energy Anne Olson, Hollstadt & Associates

SmartGridCity : Xcel Energy plugs into the smart grid. Presented by: Sandy Simon, Xcel Energy Anne Olson, Hollstadt & Associates SmartGridCity : Xcel Energy plugs into the smart grid Presented by: Sandy Simon, Xcel Energy Anne Olson, Hollstadt & Associates SmartGridCity Boulder, CO Collaborative project with diverse partners and

More information

ON SECURITY OF BLUETOOTH WIRELESS SYSTEM. Pavel Kucera, Petr Fiedler, Zdenek Bradac, Ondrej Hyncica

ON SECURITY OF BLUETOOTH WIRELESS SYSTEM. Pavel Kucera, Petr Fiedler, Zdenek Bradac, Ondrej Hyncica ON SECURITY OF BLUETOOTH WIRELESS SYSTEM Pavel Kucera, Petr Fiedler, Zdenek Bradac, Ondrej Hyncica Brno University of Technology Faculty of Electrical Engineering and Communication Department of Control

More information

The role of ICT in managing the complex Smart Grid Infrastructure. Nampuraja Enose Infosys Labs

The role of ICT in managing the complex Smart Grid Infrastructure. Nampuraja Enose Infosys Labs The role of ICT in managing the complex Smart Grid Infrastructure Nampuraja Enose Infosys Labs Smart Grid The Smart Grid isn t a thing, but rather a Vision for the power system of the future Its a mix

More information

CEN and CENELEC Position Paper on the draft regulation ''Cybersecurity Act''

CEN and CENELEC Position Paper on the draft regulation ''Cybersecurity Act'' CEN Identification number in the EC register: 63623305522-13 CENELEC Identification number in the EC register: 58258552517-56 CEN and CENELEC Position Paper on the draft regulation ''Cybersecurity Act''

More information

ITU-T Y Next generation network evolution phase 1 Overview

ITU-T Y Next generation network evolution phase 1 Overview I n t e r n a t i o n a l T e l e c o m m u n i c a t i o n U n i o n ITU-T Y.2340 TELECOMMUNICATION STANDARDIZATION SECTOR OF ITU (09/2016) SERIES Y: GLOBAL INFORMATION INFRASTRUCTURE, INTERNET PROTOCOL

More information

Meters and More. Dr. Robert Denda Chairman of the Technical Committee for Protocol Specifications

Meters and More. Dr. Robert Denda Chairman of the Technical Committee for Protocol Specifications Meters and More Dr. Robert Denda Chairman of the Technical Committee for Protocol Specifications Agenda 1. The association 2. Technology 3. Towards a European standard 4. Meters and More in the field 5.

More information

Enabling Smart Energy as a Service via 5G Mobile Network advances

Enabling Smart Energy as a Service via 5G Mobile Network advances NR 5 Enabling Smart Energy as a Service via 5G Mobile Network advances 5G-PPP Phase 2 at EuCNC Oulu Fiorentino Giampaolo giampaolo.fiorentino@eng.it SCOPE MOTIVATION NR 5 Insights behind... The state of

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

HART COMMUNICATION. A Digital Upgrade For Existing Plants

HART COMMUNICATION. A Digital Upgrade For Existing Plants HART COMMUNICATION 1. The majority of smart field devices installed worldwide today are HART-enabled. But some new in the automation field may need a refresher on this powerful technology. Simply put,

More information

Investigation on OLSR Routing Protocol Efficiency

Investigation on OLSR Routing Protocol Efficiency Investigation on OLSR Routing Protocol Efficiency JIRI HOSEK 1, KAROL MOLNAR 2 Department of Telecommunications Faculty of Electrical Engineering and Communication, Brno University of Technology Purkynova

More information

Defining M2M Services Capabilities; one step towards the Internet of things ENERsip Project: M2M Platform for Generation and Consumption Networks

Defining M2M Services Capabilities; one step towards the Internet of things ENERsip Project: M2M Platform for Generation and Consumption Networks Defining M2M Services Capabilities; one step towards the Internet of things ENERsip Project: M2M Platform for Generation and Consumption Networks Dr. José Ignacio Moreno joseignacio.moreno@uc3m.es Outline

More information

Vortex Whitepaper. Simplifying Real-time Information Integration in Industrial Internet of Things (IIoT) Control Systems

Vortex Whitepaper. Simplifying Real-time Information Integration in Industrial Internet of Things (IIoT) Control Systems Vortex Whitepaper Simplifying Real-time Information Integration in Industrial Internet of Things (IIoT) Control Systems www.adlinktech.com 2017 Table of Contents 1. Introduction........ P 3 2. Iot and

More information

2. REAL-TIME CONTROL SYSTEM AND REAL-TIME NETWORKS

2. REAL-TIME CONTROL SYSTEM AND REAL-TIME NETWORKS 2. REAL-TIME CONTROL SYSTEM AND REAL-TIME NETWORKS 2.1 Real-Time and Control Computer based digital controllers typically have the ability to monitor a number of discrete and analog inputs, perform complex

More information

TELECOM & ENERGY «Collaborating to Power the Smart Grids for Digital Growth«

TELECOM & ENERGY «Collaborating to Power the Smart Grids for Digital Growth« REPUBLIC OF ALBANIA ELECTRONIC AND POSTAL COMMUNICATIONS AUTHORITY - AKEP TELECOM & ENERGY «Collaborating to Power the Smart Grids for Digital Growth« SUMMARY What is Smart Grid Communications Networks

More information

GridEye FOR A SAFE, EFFICIENT AND CONTROLLED POWER GRID

GridEye FOR A SAFE, EFFICIENT AND CONTROLLED POWER GRID FOR A SAFE, EFFICIENT AND CONTROLLED POWER GRID SMART GRID VISION To solve today s energy and pollution problems, DEPsys believes that the world should be powered entirely by renewable energy. By applying

More information

Pepco s Plans for Smart Grid. Rob Stewart Blueprint Technology Strategist

Pepco s Plans for Smart Grid. Rob Stewart Blueprint Technology Strategist Pepco s Plans for Grid Rob Stewart Blueprint Technology Strategist 0 Pepco s Grid Vision Through the Grid, customers will become empowered to make choices regarding their use and cost of energy. It will

More information

Process Monitoring in Operating System Linux

Process Monitoring in Operating System Linux Process Monitoring in Operating System Linux ZDENEK SLANINA, VILEM SROVNAL Department of Measurement and Control VSB Technical University of Ostrava 17. listopadu 15, 708 33 Ostrava-Poruba CZECH REPUBLIC

More information

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

A Management System for a Distributed Power-Line Based Communication Infrastructure A Management System for a Distributed Power-Line Based Communication Infrastructure Aleksey Bratukhin Institute of Computer Technology Vienna University of Technology Gusshausstr. 27-29/384 A-1040 Vienna,

More information

Smart Metering and Smart Grids: the Enel

Smart Metering and Smart Grids: the Enel Smart Metering and Smart Grids: the Enel experience Brussels, 8 March 2010 Dario Garofalo Regulatory and Environment, Enel SpA Agenda Smart grids potential Enel achievements and strategy Smart grids regulation

More information

Performance Analysis of MANET Routing Protocols OLSR and AODV

Performance Analysis of MANET Routing Protocols OLSR and AODV VOL. 2, NO. 3, SEPTEMBER 211 Performance Analysis of MANET Routing Protocols OLSR and AODV Jiri Hosek Faculty of Electrical Engineering and Communication, Brno University of Technology Email: hosek@feec.vutbr.cz

More information

Boundary control : Access Controls: An access control mechanism processes users request for resources in three steps: Identification:

Boundary control : Access Controls: An access control mechanism processes users request for resources in three steps: Identification: Application control : Boundary control : Access Controls: These controls restrict use of computer system resources to authorized users, limit the actions authorized users can taker with these resources,

More information

Energy Action Plan 2015

Energy Action Plan 2015 Energy Action Plan 2015 Purpose: In support of the Texas A&M University Vision 2020: Creating a Culture of Excellence and Action 2015: Education First Strategic Plan, the Energy Action Plan (EAP) 2015

More information

Nodes Energy Conserving Algorithms to prevent Partitioning in Wireless Sensor Networks

Nodes Energy Conserving Algorithms to prevent Partitioning in Wireless Sensor Networks IJCSNS International Journal of Computer Science and Network Security, VOL.17 No.9, September 2017 139 Nodes Energy Conserving Algorithms to prevent Partitioning in Wireless Sensor Networks MINA MAHDAVI

More information

Measurement Challenges and Opportunities for Developing Smart Grid Testbeds

Measurement Challenges and Opportunities for Developing Smart Grid Testbeds Measurement Challenges and Opportunities for Developing Smart Grid Testbeds 10th Carnegie Mellon Conference on the Electricity Industry April 1, 2015 Paul Boynton boynton@nist.gov Testbed Manager Smart

More information

Australia's distributed energy future Australian Clean Energy Summit, 2018

Australia's distributed energy future Australian Clean Energy Summit, 2018 Australia's distributed energy future Australian Clean Energy Summit, 218 Annabel Wilton August 1, 218 BNEF provides analysis to help you understand the future of energy Clean Energy Advanced Transport

More information

An Architectural Framework for Ubiquitous Computing Applications

An Architectural Framework for Ubiquitous Computing Applications An Architectural Framework for Ubiquitous Computing Applications I. Koutelekos 1 Dpts. of Electronics and Automation MSc in Networking and Data Communications, T.E.I. of Piraeus, Greece, Email: ekoutele@otenet.gr

More information

Securing the Smart Grid. Understanding the BIG Picture 11/1/2011. Proprietary Information of Corporate Risk Solutions, Inc. 1.

Securing the Smart Grid. Understanding the BIG Picture 11/1/2011. Proprietary Information of Corporate Risk Solutions, Inc. 1. Securing the Smart Grid Understanding the BIG Picture The Power Grid The electric power system is the most capital-intensive infrastructure in North America. The system is undergoing tremendous change

More information

ONCOR INFRASTRUCTURE DEVELOPMENT

ONCOR INFRASTRUCTURE DEVELOPMENT ONCOR INFRASTRUCTURE DEVELOPMENT Ellen Buck Presentation to Leadership North Texas March 27, 2015 ONCOR: 100 YEARS AND COUNTING Largest Texas regulated utility More than 3,000 employees 10 million living

More information

Privacy and Security in Smart Grids

Privacy and Security in Smart Grids Faculty of Computer Science, Institute of Systems Architecture, Chair for Privacy and Data Security Privacy and Security in Smart Grids The German Approach Sebastian Clauß, Stefan Köpsell Dresden, 19.10.2012

More information

HIGH LEVEL REQUIREMENTS OF FAST SIMULATION AND MODELLING SUITE OF TOOLS FOR FUTURE SELF-HEALING DISTRIBUTION POWER SYSTEM

HIGH LEVEL REQUIREMENTS OF FAST SIMULATION AND MODELLING SUITE OF TOOLS FOR FUTURE SELF-HEALING DISTRIBUTION POWER SYSTEM HIGH LEVEL REQUIREMENTS OF FAST SIMULATION AND MODELLING SUITE OF TOOLS FOR FUTURE SELF-HEALING DISTRIBUTION POWER SYSTEM A. Valenti* I Bel ** S. Lee *EDF **EPRI E2I ConEdison France USA USA arnaud.valenti@edf.fr

More information

Washington DC October Consumer Engagement. October 4, Gail Allen, Sr. Manager, Customer Solutions

Washington DC October Consumer Engagement. October 4, Gail Allen, Sr. Manager, Customer Solutions Consumer Engagement Through Social Media October 4, 2012 Gail Allen, Sr. Manager, Customer Solutions KCP&L Company Overview Key Statistics Customers Generation 9 plant sites 26 generating units 830,000

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

Digitalization in the Energy Market Test Technology for the Electricity Market 2.0

Digitalization in the Energy Market Test Technology for the Electricity Market 2.0 ANALYZING LOGGING testing MEASURING Digitalization in the Energy Market Test Technology for the Electricity Market 2.0 Do you have any questions or wishes? Feel free to contact us. ZERA GmbH Hauptstraße

More information

Options Standard WiFi PM+ PM+/WiFi GPRS PM+/GPRS Meter

Options Standard WiFi PM+ PM+/WiFi GPRS PM+/GPRS Meter Years Maximum plant size 2000 kwp Optional Powermanagement and cos phi control Color TFT-Touch-Display and LCD- Status-Display for displaying graphics and operation Monitor central inverters and SCBs Options

More information

Mesh Networking Principles

Mesh Networking Principles Technology, N. Jones Research Note 8 July 2003 Mesh Topologies Promise Resilient Wireless Networks Mesh architecture will become an essential element of wireless networking because it is easy to install,

More information

PROFINET, EtherNet/IP, Industrial Ethernet, Modbus TCP,

PROFINET, EtherNet/IP, Industrial Ethernet, Modbus TCP, Release Note TH LINK PROFINET, EtherNet/IP, Industrial Ethernet, Modbus TCP, PC Industrial Ethernet Version 4.1.0.0 Softing Industrial Automation GmbH Richard-Reitzner-Allee 6 85540 Haar Tel.: +49 89 4

More information

News / Outlook / Visions

News / Outlook / Visions News / Outlook / Visions Performance und Scalability Ralf Nörenberg Director Performance und Scalability Topics 1. Sketching Tomorrow 2. Big Data Project A: ODS as a Master 3. Big Data Project B: ODS as

More information

Technical Spotlight DEMO6-S6

Technical Spotlight DEMO6-S6 Technical Spotlight DEMO6-S6 Spotlight on BPL communication implemented in DEMO6 This project has received funding from the European Union s Seventh Framework Programme for research, technological development

More information

Handbook ASI-PRG-ADR. AS-Interface Addressing Device. Festo AG & Co de 0004a

Handbook ASI-PRG-ADR. AS-Interface Addressing Device. Festo AG & Co de 0004a Handbook ASI-PRG-ADR AS-Interface Addressing Device Festo AG & Co. 360 039 de 0004a AS-Interface is a registered Trademark of the AS-International Association We recognise a duty to make a contribution

More information

Personal Grid. 1 Introduction. Zhiwei Xu, Lijuan Xiao, and Xingwu Liu

Personal Grid. 1 Introduction. Zhiwei Xu, Lijuan Xiao, and Xingwu Liu Personal Grid Zhiwei Xu, Lijuan Xiao, and Xingwu Liu Institute of Computing Technology, Chinese Academy of Sciences 100080 Beijing, China Abstract. A long-term trend in computing platform innovation is

More information

Spontaneous Interaction using Mobile Phones and Short Text Messages

Spontaneous Interaction using Mobile Phones and Short Text Messages Spontaneous Interaction using Mobile Phones and Short Text Messages Frank Siegemund Distributed Systems Group, Department of Computer Science, Swiss Federal Institute of Technology (ETH) Zurich, 8092 Zurich,

More information

T&D Challenges and Opportunities

T&D Challenges and Opportunities T&D Challenges and Opportunities Mark McGranaghan Vice President, Power Delivery and Utilization Alberta Power Industry Consortium November 5, 2014 Tomorrow s Power System (vision) The Integrated Grid

More information

The current state of the electrical grid And the technologies that will enable its transformation

The current state of the electrical grid And the technologies that will enable its transformation ABB POWER GRIDS The current state of the electrical grid And the technologies that will enable its transformation IEEE POWER & ENERGY SOCIETY - SUBSTATIONS COMMITTEE May 7-11 th Agenda State of the Industry

More information

ADAPTIVE AND DYNAMIC LOAD BALANCING METHODOLOGIES FOR DISTRIBUTED ENVIRONMENT

ADAPTIVE AND DYNAMIC LOAD BALANCING METHODOLOGIES FOR DISTRIBUTED ENVIRONMENT ADAPTIVE AND DYNAMIC LOAD BALANCING METHODOLOGIES FOR DISTRIBUTED ENVIRONMENT PhD Summary DOCTORATE OF PHILOSOPHY IN COMPUTER SCIENCE & ENGINEERING By Sandip Kumar Goyal (09-PhD-052) Under the Supervision

More information

Enhancing EJB Component Model

Enhancing EJB Component Model Enhancing EJB Component Model Vladimír Mencl, Jiří Adámek, Adam Buble, Petr Hnětynka, Stanislav Višňovský Abstract Component Based Software Development (CBSD) aims to lower software development costs by

More information

AMM and legal implications for the electricity market

AMM and legal implications for the electricity market AMM and legal implications for the electricity market Václav Stupka Institute of Law and Technology, Faculty of Law, Masaryk University, Brno, Czech Repulic vaclav.stupka@law.muni.cz Abstract. This paper

More information

BEFORE THE PENNSYLVANIA PUBLIC UTILITY COMMISSION PETITION OF PECO ENERGY COMPANY FOR APPROVAL OF ITS SMART METER UNIVERSAL DEPLOYMENT PLAN

BEFORE THE PENNSYLVANIA PUBLIC UTILITY COMMISSION PETITION OF PECO ENERGY COMPANY FOR APPROVAL OF ITS SMART METER UNIVERSAL DEPLOYMENT PLAN PECO ENERGY COMPANY STATEMENT NO. 2 BEFORE THE PENNSYLVANIA PUBLIC UTILITY COMMISSION PETITION OF PECO ENERGY COMPANY FOR APPROVAL OF ITS SMART METER UNIVERSAL DEPLOYMENT PLAN DOCKET NO. M-2009-2123944

More information

MCAP: Multiple Client Access Protocol Ravindra Singh Rathore SML College Jhunjhunu, Rajasthan India

MCAP: Multiple Client Access Protocol Ravindra Singh Rathore SML College Jhunjhunu, Rajasthan India MCAP: Multiple Client Access Protocol Ravindra Singh Rathore SML College Jhunjhunu, Rajasthan India (ravindrathore@gmail.com) Abstract - We have implicitly assumed that the client-side software of a web-based

More information

HEMS 2000 Home Energy Management System

HEMS 2000 Home Energy Management System HEMS 2000 Home Energy Management System 1. System Structure 1.1. System Diagram HEMS2000 is a ZigBee-based close system that consists of a Smart Thermostat and an In-Home Display, allowing the user to

More information

Power Management Solutions Maximise the reliability and efficiency of your power critical facility

Power Management Solutions Maximise the reliability and efficiency of your power critical facility Power Management Solutions Maximise the reliability and efficiency of your power critical facility Integrated power management solutions for end-to-end monitoring, control, and analysis of your entire

More information

Applications & Tools. Failsafe and standard cross communication of the MSS 3RK3 via AS-Interface. SIRIUS Safety. FAQ February 2012

Applications & Tools. Failsafe and standard cross communication of the MSS 3RK3 via AS-Interface. SIRIUS Safety. FAQ February 2012 Cover sheet Failsafe and standard cross communication of the MSS 3RK3 via AS-Interface SIRIUS Safety FAQ 58512565 February 2012 Applications & Tools Answers for industry. Industry Automation und Drives

More information

Datacenter Management and The Private Cloud. Troy Sharpe Core Infrastructure Specialist Microsoft Corp, Education

Datacenter Management and The Private Cloud. Troy Sharpe Core Infrastructure Specialist Microsoft Corp, Education Datacenter Management and The Private Cloud Troy Sharpe Core Infrastructure Specialist Microsoft Corp, Education System Center Helps Deliver IT as a Service Configure App Controller Orchestrator Deploy

More information

Cisco Security Manager 4.1: Integrated Security Management for Cisco Firewalls, IPS, and VPN Solutions

Cisco Security Manager 4.1: Integrated Security Management for Cisco Firewalls, IPS, and VPN Solutions Data Sheet Cisco Security Manager 4.1: Integrated Security Management for Cisco Firewalls, IPS, and VPN Solutions Security Operations Challenges Businesses are facing daunting new challenges in security

More information

Energy monitoring of electricity consumption in tertiary sector building complex

Energy monitoring of electricity consumption in tertiary sector building complex Energy monitoring of electricity consumption in tertiary sector building complex Ass. Prof. Irene P. Koronaki Laboratory of Applied Thermodynamics Thermal Engineering Section, School Of Mechanical Engineering,

More information

Smart Grid Projects UK Policy and Experience

Smart Grid Projects UK Policy and Experience Smart Grid Projects UK Policy and Experience 17 th March 2016 (Theme C): Smart Grid Project Outcomes Kelly Butler Deputy CEO BEAMA Limited About BEAMA BEAMA is the leading trade association representing

More information

Oracle Utilities Smart Grid Gateway Adapter Development Kit

Oracle Utilities Smart Grid Gateway Adapter Development Kit Oracle Utilities Smart Grid Gateway Adapter Development Kit User's Guide Release 2.1.0 Service Pack 2 E41628-02 April 2014 Oracle Utilities Smart Grid Gateway Adapter Development Kit User's Guide Release

More information

Next Step, Next Frontier, NextAxiom. City of Fort Collins Smart Grid Automation Case Study: NextAxiom Intelligent Information Flow Platform

Next Step, Next Frontier, NextAxiom. City of Fort Collins Smart Grid Automation Case Study: NextAxiom Intelligent Information Flow Platform Next Step, Next Frontier, NextAxiom City of Fort Collins Smart Grid Automation Case Study: NextAxiom Intelligent Information Flow Platform Next Step for Municipal Utilities: Smart Grids and Smarter Government

More information

HAN Devices & Integration. Bradley A. Singletary, CISSP

HAN Devices & Integration. Bradley A. Singletary, CISSP HAN Devices & Integration Bradley A. Singletary, CISSP brad@enernex.com Access HAN Architectural Purpose Connect energy services to energy consumers Understanding Help consumers understand usage Help

More information

Time-Triggered Ethernet

Time-Triggered Ethernet Time-Triggered Ethernet Chapters 42 in the Textbook Professor: HONGWEI ZHANG CSC8260 Winter 2016 Presented By: Priyank Baxi (fr0630) fr0630@wayne.edu Outline History Overview TTEthernet Traffic Classes

More information

Public INFSO-ICT Deliverable n. 6.2 V2G Interoperability Testing Framework. Workpackage 6 Conformance and Interoperability Testing

Public INFSO-ICT Deliverable n. 6.2 V2G Interoperability Testing Framework. Workpackage 6 Conformance and Interoperability Testing 7 th Programme INFSO-ICT 285285 V2G Interoperability Testing Deliverable n. 6.2 V2G Interoperability Testing Workpackage 6 Conformance and Interoperability Testing Editors Authors Status Distribution Miguel

More information

Architecture, Cost, Operational Effectiveness, and Manufacturer Engagement

Architecture, Cost, Operational Effectiveness, and Manufacturer Engagement EPRI White Paper Concepts to Enable Advancement of Distributed Energy Resources EPRI Product Number: 1020432 Gale Horst Project Manager, Smart Demonstrations Electric Power Research Institute (EPRI) 1

More information

Dell EMC Hyper-Converged Infrastructure

Dell EMC Hyper-Converged Infrastructure Dell EMC Hyper-Converged Infrastructure New normal for the modern data center GLOBAL SPONSORS Traditional infrastructure and processes are unsustainable Expensive tech refreshes, risky data migrations

More information

Competency Definition

Competency Definition Adult Children's Outreach Technical Teen Acquisition Adaptability The ability to effectively process library material orders; knowledge of vendor software, processes, products, and updates x x The ability

More information

Project DINAR Pooled BEMI (Bidirectional Energy Management Interface), Germany

Project DINAR Pooled BEMI (Bidirectional Energy Management Interface), Germany Project DINAR Pooled BEMI (Bidirectional Energy Management Interface), Germany 1 Undertaken by CIRED, Centre International de recherche sur l Environnement et le Développement and ISET, Institut für Solare

More information

Cisco Unified Computing System Delivering on Cisco's Unified Computing Vision

Cisco Unified Computing System Delivering on Cisco's Unified Computing Vision Cisco Unified Computing System Delivering on Cisco's Unified Computing Vision At-A-Glance Unified Computing Realized Today, IT organizations assemble their data center environments from individual components.

More information

European Standardization & Digital Transformation. Ashok GANESH Director Innovation ETICS Management Committee

European Standardization & Digital Transformation. Ashok GANESH Director Innovation ETICS Management Committee European Standardization & Digital Transformation Ashok GANESH Director Innovation ETICS Management Committee 2017-04-26 CEN-CENELEC Members Austria Estonia Hungary Malta Slovakia Belgium Finland Netherlands

More information

Power Transmission and Distribution Monitoring using Internet of Things (IoT) for Smart Grid

Power Transmission and Distribution Monitoring using Internet of Things (IoT) for Smart Grid IOP Conference Series: Materials Science and Engineering PAPER OPEN ACCESS Power Transmission and Distribution Monitoring using Internet of Things (IoT) for Smart Grid To cite this article: N A Hidayatullah

More information

Distributed Architecture for Managing Big Data in Smart Grid

Distributed Architecture for Managing Big Data in Smart Grid Distributed Architecture for Managing Big Data in Smart Grid A Thesis Submitted to the Faculty of Graduate Studies and Research In Partial Fulfillment of the Requirements For the Degree of Master of Applied

More information

Extending E-R for Modelling XML Keys

Extending E-R for Modelling XML Keys Extending E-R for Modelling XML Keys Martin Necasky Faculty of Mathematics and Physics, Charles University, Prague, Czech Republic martin.necasky@mff.cuni.cz Jaroslav Pokorny Faculty of Mathematics and

More information

Smart Buildings as Cyber- Physical Systems (CPS) In Smart Cities: Living Building

Smart Buildings as Cyber- Physical Systems (CPS) In Smart Cities: Living Building Smart Buildings as Cyber- Physical Systems (CPS) In Smart Cities: Living Building Dr. Driss Benhaddou Associate Professor and Fulbright Scholar University of Houston, TX dbenhaddou@uh.edu Tuesday, 01/05/2016

More information

Verwendung der sicheren BSI Smart Metering Infrastruktur für Anwendungen aus der Wohnungswirtschaft und gewerbliche Liegenschaften

Verwendung der sicheren BSI Smart Metering Infrastruktur für Anwendungen aus der Wohnungswirtschaft und gewerbliche Liegenschaften Verwendung der sicheren BSI Smart Metering Infrastruktur für Anwendungen aus der Wohnungswirtschaft und gewerbliche Liegenschaften Christian Freudenmann, Dominik Henneke PPC, 09.11.2017, Smart Energy 2017,

More information

TH LINK PROFINET. Release Note. Version

TH LINK PROFINET. Release Note. Version Release Note TH LINK PROFINET Version 3.0.0.0 Softing Industrial Automation GmbH Richard-Reitzner-Allee 6 85540 Haar Tel.: +49 89 4 56 56-0 Fax: +49 89 4 56 56-399 info.automation@softing.com http://industrial.softing.com

More information

Engaging the new energy consumer

Engaging the new energy consumer Engaging the new energy consumer Everything changes except people Tom Rowlands-Rees June 04, 2018 Utilities are eying growth downstream and in renewables Selected company strategic commitments Upstream

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

Project Proposal for Large Scale Pilot FEASIBLE in H2020 the National Pilot Dr. Georgia Ayfantopoulou

Project Proposal for Large Scale Pilot FEASIBLE in H2020 the National Pilot Dr. Georgia Ayfantopoulou Project Proposal for Large Scale Pilot FEASIBLE in H2020 the National Pilot Dr. Georgia Ayfantopoulou Principal Researcher Deputy Director - Hellenic Institute of transport Center for Research and Technology

More information

Lecture Outline. Requirements Analysis I. Defining Requirements Analysis. Network Design: A Systems Approach. Jeremiah Deng.

Lecture Outline. Requirements Analysis I. Defining Requirements Analysis. Network Design: A Systems Approach. Jeremiah Deng. Lecture Outline TELE302 Lecture 15 Requirements Analysis I Jeremiah Deng TELE / InfoSci, University of Otago 31 August 2015 1 2 Starting from the Top 3 4 Other Requirements 5 TELE302 Lecture 15 2 / 30

More information

The TDAQ Analytics Dashboard: a real-time web application for the ATLAS TDAQ control infrastructure

The TDAQ Analytics Dashboard: a real-time web application for the ATLAS TDAQ control infrastructure The TDAQ Analytics Dashboard: a real-time web application for the ATLAS TDAQ control infrastructure Giovanna Lehmann Miotto, Luca Magnoni, John Erik Sloper European Laboratory for Particle Physics (CERN),

More information

Table of Contents. Foreword... Ronnie BELMANS

Table of Contents. Foreword... Ronnie BELMANS Foreword... Ronnie BELMANS xv Chapter 1. SmartGrids: Motivation, Stakes and Perspectives... 1 Nouredine HADJSAÏD and Jean-Claude SABONNADIÈRE 1.1. Introduction... 1 1.1.1. The new energy paradigm... 1

More information

Autonomous Model of Software Architecture for Smart Grids

Autonomous Model of Software Architecture for Smart Grids Autonomous Model of Software Architecture for Smart Grids Zenon Chaczko 1, Shahrzad Aslanzadeh 1, Alqarni Lulwah 1 1 University of Technology, Sydney, Faculty of Engineering and IT, Sydney, Australia Zenon.Chaczko@uts.edu.au,

More information

INTEGRATION OF AD HOC WIRELESS SENSOR NETWORKS IN A VIRTUAL INSTRUMENTATION CONFIGURATION

INTEGRATION OF AD HOC WIRELESS SENSOR NETWORKS IN A VIRTUAL INSTRUMENTATION CONFIGURATION Bulletin of the Transilvania University of Braşov Vol. 7 (56) No. 2-2014 Series I: Engineering Sciences INTEGRATION OF AD HOC WIRELESS SENSOR NETWORKS IN A VIRTUAL INSTRUMENTATION CONFIGURATION Mihai MACHEDON-PISU

More information

Sentinet for BizTalk Server SENTINET

Sentinet for BizTalk Server SENTINET Sentinet for BizTalk Server SENTINET Sentinet for BizTalk Server 1 Contents Introduction... 2 Sentinet Benefits... 3 SOA and API Repository... 4 Security... 4 Mediation and Virtualization... 5 Authentication

More information