Smart Grids: Data Concentrator or Gateway?

Since the establishment of communication networks, it has been necessary to choose between centralised and decentralised solutions. However, there are not only two solutions – it is also possible to choose different levels of decentralisation. What level of decentralisation is suitable depends on a number of parameters. The main parameters include connectivity between different network elements and their computing power.

Devices and topology of smart grids 

The fundamental element of any smart grid is a smart meter. The meter is called ‘smart’ if it has a communication interface which allows integration of the meter into the smart grid. The most common communication interfaces are: PLC (power line communication), W-MBus, ZigBee, 6LoWPAN, GPRS, etc.

Leaving aside GPRS, which does not require a gateway or concentrator, it can be said that the remaining communication types are low cost in terms of construction of the communication network, but they are characterised by lower reliability of communication and a relatively low data throughput.

Standard topology of the Smart Grid
Figure 1: Diagram of smart grid topology

Due to the relatively short communication distance of most networks used for smart meter communication, it is necessary to ensure network connectivity to other networks such as the Internet.

That functionality can be provided by a gateway or data concentrator, which can be located in a transformer, common areas of the building or at another location. These devices communicate with a head-end server, mostly via mobile networks. An example of smart grid topology including connection to the head-end server is shown in Figure 1.

Gateway 

The most important gateway function is to transmit messages from one network to another. Furthermore, the gateway can manage the topology of sub-networks or can integrate router functionality.

It is necessary to note that meters in most cases do not support the protocols used in computer networks which are mostly based on web services. Even when devices are compatible with the IP protocol, on the application layer they use specialised protocols for smart grids such as DLMS, W MBus etc.

Due to these facts, functionalities from data concentrator are still needed, but it is possible to implement them on the server-side where high-level programming languages can be used and it is easier to maintain the software.

Gateway with/without queue 

Quality of communication is influenced by message queue support in the gateway. If the gateway does not support queue, the gateway can be implemented very easily with low demands on computing power but with potentially bad consequences for throughput, error rates and latency of communication.

If the gateway supports queue, it should also support QoS (quality of service), which allows prioritisation of messages using a scheduler. A good example of such a scheduler is LLQ (low-latency queuing) used in Ethernet routers. However, implementation of the queue along with QoS support is computationally demanding.

A way of calculating the communication parameters for the gateway without queue and with queue if the second network is of the master-slave (request-answer) type can be seen in Table 1. In the variant without queue, baud rate [the rate at which information is transferred in a communication channel] is always less than the baud rate in both networks.

 Gateway without queueGateway with queue / Concentrator
Baud rate (R)R = ( R1 R2 ) / ( R1 + R2 )R = min (R1 , R2 )
LatencyLatency = Latency1 + Latency2Latency = Latency2
Error ratio (PER)PER = 1 – (1 – PER1 ) (1 – PER2 )PER = ( R – min( R1(1-PER1 ), R2(1-PER2 )) / R
ThroughputL R / ( L + R Latency ) ( 1 – PER ) 
Table 1: Calculation of communication parameters

significant relative decrease in comparison with the minimum baud rate occurs if these speeds are similar. Latency is the sum of latencies in both networks, and the error ratio is always greater than the error ratio in the individual networks.

significant relative increase in the error ratio to the greatest error ratio occurs if networks have similar error ratio. In the case of gateways with a queue, baud rate is limited only by the baud rate of the slower network.

 GPRSMT-PLC
Baud rate (R)R1 = 3200 B/sR2 = 1160 B/s
LatencyLatency1 = 0,3 sLatency2 = 0,022 s
Error ratio (PER)PER1 = 20 %PER2 = 30 %
Frame length L = 42 B
Table 2: Parameters of GPRS and MT PLC

Long-term network throughput is affected only by latency from the second network since the latency of the first network is eliminated by the queue. Error ratio of the faster network occurs only if its throughput is lower than the throughput of the slower network.

Example calculation of communication parameters for GPRS in the first network and MT PLC in the second network are shown in Table 3; the parameters of GPRS and MT PLC in Table 2.

 Without queueWith queue
Baud rate (R)R = 851 B/sR = 1160 B/s
LatencyLatency = 0,322 sLatency = 0,022 s
Error ratio (PER)PER = 44 %PER = 30 %
Throughput64 B/s = 0,50 kb/s505 B/s = 3,95 kb/s
Table 3: Example of calculation communication parameters

Due to baud rate of both networks being quite similar, latency of the first network is considerably higher, and as error ratios of networks are also similar, it is not surprising that the resulting throughput for gateway without queue is much lower than the gateway with queue. In the case of a combination of Ethernet and MT PLC, the difference will not be so significant.

 Table 4 summarises advantages and disadvantages of the gateways with queue and without queue.

Gateway without queueGateway with queue
+ price
+ simple software update
+ easier development
+ simple software update
+ easier development
– low network throughput
– complex software on server-side
– greater data flow between the gateway and the server
– complex software on the server-side
– greater data flow between the gateway and the server
– server has to manage the use of the gateway queue
Table 4: Advantages and disadvantages of gateway without queues and with queue

Data concentrator

A data concentrator is another development stage of the gateway with a queue. Given that the gateway with queue requires more computing power, there is the possibility to slightly increase the performance and add more functionality. The actual advantages and disadvantages of a data concentrator are shown in Table 5.

Automatic creation of routine tasks – The majority of messages in smart grids are periodic readings of profiles with measured data and asynchronous logs and nothing prevents the concentrator from creating these messages itself. This saves a considerable part of the communication between the server and concentrator, and the server does not have to schedule these tasks.

Joining answers into larger units – Since the packets in the network between the concentrator and the server may be in most cases substantially greater than the size of packets in the network of meters, it is appropriate to transmit multiple responses from the meters to the server in a single message. Moreover, it is possible to use data compression. As before, it saves a considerable amount of data transmitted between the concentrator and the server.

Data Concentrator
+ lower data flow between data concentrator and server
+ simple application development on server-side
+ faster response to smart grids events
– price
– complex FW development and maintenance
Table 5: Advantages and disadvantages of data concentrator

Protocol translation – For server-side applications, it is difficult to implement specialised protocols such as the DLMS, W-MBus, etc., which are used in smart grids. So it is an advantage if the concentrator communicates with the server by a protocol independent of the protocol used in the meter network. Furthermore, this protocol can be optimised and it can provide greater convenience in its processing in high-level programming languages.

Data analysis, events filtering – The concentrator does not have to only forward data from meters to server. The concentrator can analyse this data, filter it or perform other processing. This can result in substantial savings in the communication between the concentrator and the server, and also greatly accelerates the response to certain network states.

Conclusion: What is the perfect solution?

A gateway without queue can be a more cost-effective solution if the network between the server and gateway has low latency and high throughput with minimal error rates compared to the meter network.

Since a large part of the solutions in practice use networks with higher latency and error ratios and lower throughput, using the gateway without the queue in those cases is inappropriate and could cause a significant reduction of data throughput compared to devices with queue.

In these cases, it is necessary to use at least a gateway with queue, or use a data concentrator, which can save the cost of server applications development and data transfer between the concentrator and the server.

A concentrator can also improve the response to smart grid events and generally provide greater comfort when using and servicing the device. If the device has queue, the arrangement of queue scheduler ensuring QoS is also very important.

Ready to discover our Smart Grid Solutions?

ModemTec
Information regarding the use of cookies on our website

What are cookies files?

Cookies are files that are stored in your device during your browsing on our website. Cookies are used to remember certain information about the user mainly in order to improve consumer interface, communication between the website and your device and simplify and accelerate functions of our website. Besides technical cookies that are essential for operation of the website, we use cookies to help us to inform you in case of maintenance of the website – those cookies obtain the information regarding the display of the alert information – and to analyse your preference and activity on the website by Google Analytics (“GA”) for the purpose of improving the provided services. With help of Google Analytics, we gain information of your activities on the website, your IP address and information of the type of your device (the “Personal Data”).

Cookies’ settings

Cookies preferences are set via a pop-up bar that appears the first time you visit our website. As a default setting, disagreement with analytical cookies is set up. Analytical and advertising cookies will be processed only in case of your agreement expressed by ticking the appropriate box on the bar. Technical cookies are allowed. Technical cookies cannot be switched off, because they are essential for proper operation of the website. The settings can always be changed by clicking to the link "cookies settings". The link is located on the bottom bar.

Your rights

Please note that you have a right to:

  • revoke your consent to the processing of Personal Data by changing the cookies settings according to the steps above,
  • require information on what Personal Data our company processes
  • require explanation regarding the processing of your Personal Data and demand correction provided the Personal Data are processed incorrectly (e.g. blocking, amendment, completion of liquidation of the Personal Data),
  • demand access to the Personal Data and their amendment of the data,
  • demand deletion of the Personal Data or to limit their processing if they are processed unlawfully,
  • right to lodge a complaint against the processing of the Personal Data,
  • right to transfer the Personal Data, i.e. right to gain overview of the data we process and transfer them to another administrator,
  • in case of doubts of compliance with the obligations regarding processing of the personal data to inform us or the Data Protection Office on (https://www.uoou.cz/), with which you can lodge a complaint.

If you have any queries regarding cookies or this information sheet or if you want to use your above-stated rights, do not hesitate to contact us on [email protected].