Smart Grid Communication Comparison Distributed Control Middleware and Serialization Comparison for the Internet of Things

Size: px
Start display at page:

Download "Smart Grid Communication Comparison Distributed Control Middleware and Serialization Comparison for the Internet of Things"

Transcription

1 Downloaded from orbit.dtu.dk on: Nov 04, 2018 Smart Grid Communication Comparison Distributed Control Middleware and Serialization Comparison for the Internet of Things Petersen, Bo Søborg; Bindner, Henrik W.; Poulsen, Bjarne; You, Shi Published in: Proceedings of 7th IEEE International Conference on Innovative Smart Grid Technologies Link to article, DOI: /ISGTEurope Publication date: 2017 Document Version Peer reviewed version Link back to DTU Orbit Citation (APA): Petersen, B. S., Bindner, H. W., Poulsen, B., & You, S. (2017). Smart Grid Communication Comparison: Distributed Control Middleware and Serialization Comparison for the Internet of Things. In Proceedings of 7th IEEE International Conference on Innovative Smart Grid Technologies (pp. 1-6). IEEE. DOI: /ISGTEurope General rights Copyright and moral rights for the publications made accessible in the public portal are retained by the authors and/or other copyright owners and it is a condition of accessing publications that users recognise and abide by the legal requirements associated with these rights. Users may download and print one copy of any publication from the public portal for the purpose of private study or research. You may not further distribute the material or use it for any profit-making activity or commercial gain You may freely distribute the URL identifying the publication in the public portal If you believe that this document breaches copyright please contact us providing details, and we will remove access to the work immediately and investigate your claim.

2 Smart Grid Communication Comparison Distributed Control Middleware and Serialization Comparison for the Internet of Things Bo Petersen, Henrik Bindner, Bjarne Poulsen, Shi You DTU Electrical Engineering, DTU Compute Technical University of Denmark 2800 Lyngby, Denmark {bspet, hwbi, Abstract To solve the problems caused by intermittent renewable energy production, communication between Distributed Energy Resources (DERs) and system operators is necessary. The communication middleware and serialization used for communication are essential to ensure delivery of the messages within the required timeframe, to provide the necessary ancillary services to the power grid. This paper shows that there are better alternatives to using Web Services and XMPP as middleware and that there are better alternatives than using XML for serialization. The paper also gives guidance at choosing the best communication middleware and serialization format/library, aided by the authors earlier work, which investigates the performance and characteristics of communication middleware and serialization independently. Given the performance criteria of the paper, ZeroMQ, YAMI4, and ICE are the middleware that performs the best, and ProtoBuf (ProtoStuff), and ProtoStuff are the serialization that performs the best. Keywords Smart Grid; Internet of Things; Communication Middleware; RMI; XML-RPC; CORBA; ICE; Web Services; OPC UA; XMPP; WAMP; YAMI4; ZeroMQ; Serialization; XML; JSON; YAML; FST; Kryo; JAXB; Jackson; XStream; ProtoStuff; Gson; Genson; SnakeYaml; MsgPack; Smile; ProtoBuf; BSON; Hessian; CBOR; Avro I. INTRODUCTION With the future Smart Grid, being production following instead of a traditional power grid, which is load following, communication to Distributed Energy Resources (DERs) is necessary to efficiently use the power in the power grid when it is available, and keep the power grid stable. The reason the power grid needs to be production following is because of the intermittent production of the increasing share of renewable energy from sources like solar and wind power [1]. The ancillary power system services, that need to be provided by the DERs to efficiently use the power when it is available, and keep the grid stable, such as primary frequency control, require that the probability of delivery of measurements and control commands within a given time frame is as high as possible, which is determined by the data connection, the processing unit in the DERs, the communication middleware, and the serialization. The data connection and the processing units in the DERs depend on the owners and the manufacturer of the DERs respectively and is outside the scope of the paper. The paper focuses on the performance of the communication middleware combined with the serialization, which strongly affects the probability of delivery of the measurements and control commands within the given timeframe. The current state of the art by previous papers [2] [3] [4] including the earlier papers Smart Grid Communication Middleware Comparison [5] and Smart Grid Serialization Comparison [6] investigate the performance of the communication middleware and serialization individually. This paper combines the communication middleware from the earlier paper Smart Grid Communication Middleware Comparison [5] with the serialization formats/frameworks from the earlier paper Smart Grid Serialization Comparison [6], with the arguments for including these communication middleware and serialization formats/frameworks found in the earlier papers. The aim of this paper is to determine the performance of combining the communication middleware and the serialization previously investigated to show the combined performance of the combinations, and to show if the combined performance is as expected. This paper does not cover the characteristics of the middleware and the serialization formats/libraries, as they are covered in the earlier papers. The hypothesis of the paper is that with careful consideration for choosing the right communication middleware and serialization format/library, the performance and therefore probability of delivery of measurements and control commands within the given timeframe can be vastly improved. Especially compared to the recommendations by prevalent communication standards for Smart Grids, including the IEC [7], OpenADR [8] and CIM [9] standards. II. METHODS The tests were performed in Java using Oracle JDK 1.8.0_111, on a pair of Raspberry Pi 3 s (Model B) with a 1 Sponsored by the project, PROActive INtegration of sustainable energy resources enabling active distribution networks (PROAIN).

3 Gbit/s data connection, but the Raspberry Pi s only have 100 Mbit/s network interfaces. The middleware and serialization framework/libraries included in this comparison are taken from the earlier papers Smart Grid Communication Middleware Comparison [5] and Smart Grid Serialization Comparison [6], which consists of 10 middleware and 25 serializers. The measurements consist of the average number of messages sent from one device to another (throughput), and the average time it takes for a message to get from one device to another (latency), summarized as: Throughput (messages per second) Latency (milliseconds per message) The messaging patterns measured consist of Request- Reply, which is used for legacy systems to retrieve measurements, without knowing when it is available. Push- Pull that is used to send control commands, and Publish- Subscribe used in newer systems, where a device subscribes to measurements and gets them when they are available, summarized as: Request-Reply Push-Pull Publish-Subscribe The results come from executing each test, for each pattern, and each combination of middleware and serialization, 10 times and taking the average of the measurements. Each test takes an IEC [7] class (logical node) with randomly generated data, de-/serializes it using the current serializer and transfers it using the current communication middleware, using the current messaging pattern. The tests are performed by giving the sending device 10 seconds to send and then counting the number of messages received for 10 seconds on the receiving device, from the time the first message arrives. Throughput is measured by using a server on one device and a client on the other, with Request-Reply going from the client to the server and back, Push-Pull going from the client to the server, and Publish-Subscribe going from the server to client, with the final receiving device measuring the number of messages received during the 10 second interval. With Push-Pull and Publish-Subscribe the sending and receiving devices are not the same, which is a problem for measuring time, with different clocks, therefore the data is sent back again to the original sending device, so the same clock is used for both time measurements, and the time is then divided by 2. For Request-Reply, the sending and receiving device is always the same device, but the data was still sent again, and divided by 2, to make sure the results are comparable to the other patterns. For Request-Reply, only a tiny request message is sent with the full message payload being returned which differs from the approach from the earlier paper on communication middleware. III. RESULTS The throughput tests using Request-Reply (Fig. 1) shows that ICE and ZeroMQ perform great, YAMI4, RMI, and CORBA perform very well, XML-RPC and WAMP perform adequately, and Web Services, XMPP, and especially OPCUA struggles to keep up. They also show that the 6 best serializers that perform better than adequately include only 1 string serializer, which is JSON (ProtoStuff), which uses an incompatible JSON format. In addition, the 3 serializers that perform the best are all part of the ProtoStuff library. On the other hand, the 12 serializers that perform the worst include all XML serializers, and result in a reduction in throughput of at least 3 times compared to the 3 best, with the 7 best middleware. When looking at the throughput tests using Push-Pull (Fig. 2), ZeroMQ, WAMP, ICE, and YAMI4 perform great, CORBA performs well, XMPP and XML-RPC perform adequately, and RMI, Web Services, and OPCUA struggle to keep up, especially Web Services and OPCUA. For the serializers, the worst 16 serializers include all XML serializers and all string serializers except for JSON (ProtoStuff). The 2 best serializers are part of the ProtoStuff library and perform at least 7 times better than the worst 16 serializers, for the 4 best middleware. The Publish-Subscribe throughput tests (Fig. 3) show that XMPP and again especially OPCUA perform terribly, while ZeroMQ really shows its performance advantage in these tests. Even fewer serializers perform well for Publish-Subscribe, only 7 of the 25, with all string serializers performing badly. Only 2 serializers perform great, both of which are part of the ProtoStuff framework, and perform at least 3 times better than the worst 18 serializers for the 3 best middleware. The latency tests for all messaging patterns (Fig. 4-6) show that using OPCUA, XMPP or Web Services as middleware, or XML (JAXB) or MsgPack for serialization ruins the latency. For these middleware, for all patterns, the fastest combination is at least 13 times slower than the fastest combination for all middleware. While for these serializers, for all patterns, the best combination is 70 times slower than the fastest combination for all serializers. The Request-Reply tests (Fig. 4) show that the latency for 45 percent of the combinations is below 20 milliseconds, for 29 percent it is below 10 milliseconds, and for 5 combinations, it is below 2 milliseconds. The Push-Pull tests (Fig. 5) show that the latency for half the combinations is below 20 milliseconds, for a third, it is below 10 milliseconds and for 12 combinations it is below 2 milliseconds. The Publish-Subscribe tests (Fig. 6) shows that the latency for a third of the combinations is below 20 milliseconds, that 20 percent of the combinations is below 10 milliseconds and that for 2 combinations it is below 2 milliseconds.

4 Fig. 1. Request-Reply throughput ordered by the sum of middleware and serialization throughput. Fig. 2. Push-Pull throughput ordered by the sum of middleware and serialization throughput. Fig. 3. Publish-Subscribe throughput ordered by the sum of middleware and serialization throughput.

5 Fig. 4. Request-Reply latency ordered by the sum of middleware and serialization latency. Fig. 5. Push-Pull latency ordered by the sum of middleware and serialization latency. Fig. 6. Publish-Subscribe latency ordered by the sum of middleware and serialization latency.

6 IV. DISCUSSION A. Communication Standards One thing that is clear from the performance measurements of throughput using all messaging patterns is that Web Services and XMPP are far from being the best middleware available. The performance measurements of latency for all messaging patterns also show that using XMPP with all serializers or Web Services with the fastest serializers results in the latency being much higher than with all other middleware except for OPCUA. This should be proof enough that there are much better alternatives for middleware than using Web Services or XMPP as recommended by the prevalent communication standards, at least in the case of the processing unit being a Raspberry Pi and a 100 Mbit/s data connection. For serialization, the throughput and latency tests using all messaging patterns show that JSON is generally a better alternative to using XML, binary serializers are generally faster than string serializers are, and even though they show that the serialization format is more important than the library, the library still makes a big difference, especially for JSON. This shows that there are better alternatives for serializers than the ones used by the prevalent communication standards, which are all based on XML. B. Guidance The choice of middleware and serialization makes a huge difference in both throughput and latency performance, with the best combinations having a throughput that is at least 8 times higher than the average, and a latency that is at least 75 times faster than the average, for all messaging patterns. The best results for middleware come from using ZeroMQ, YAMI4 or ICE, with the first two, also enabling Publish- Subscribe. In addition, WAMP performs quite well for Push- Pull and Publish-Subscribe on throughput and does adequately on latency for the same messaging patterns, making it a good alternative for newer systems not using Request-Reply. For serialization, the best results come from using ProtoBuf (ProtoStuff) or ProtoStuff, with the advantage of ProtoBuf (ProtoStuff) being compatible with Google ProtoBuf serializers. Smile (ProtoStuff) and Fast-Serialization, do however do a really good job and are good alternatives. C. Real World Cases It is quite interesting that a throughput of 500 messages per second for Request-Reply and 400 messages per second for Push-Pull and Publish-Subscribe can be achieved using IEC logical node classes. Moreover, the fact that an average latency of under 2 milliseconds for all messaging patterns can be achieved with the right combination of middleware and serialization is quite promising. D. Compared to Previous Results Compared to the performance results from the paper Smart Grid Communication Middleware Comparison [5], which compares middleware using random binary and string data, of different sizes, the message sizes used for this paper range from 2 to 13 kb, and the time used for serialization is now part of the performance measurements. This takes away the big advantage with Request-Reply that ZeroMQ, ICE, and RMI had for small message sizes. The results for middleware compared to earlier (Fig. 7) are as expected, with ZeroMQ, YAMI4 and ICE still leading in performance, but when looking at the difference between Request-Reply and the other messaging patterns, the difference is huge. The previous results showed that the other patterns are up to 10 times faster than Request-Reply, which because of the increased message sizes and the change from sending a full message in both directions for Request-Reply to only sending it back, makes the difference between the patterns quite small, with Request-Reply being the fastest. Fig. 7. Middleware throughput (10 kilobyte messages). [5] For getting measurement data, Publish-Subscribe still has the advantage over Request-Reply, that it gets data when it is available instead of having to do polling to see if new data is available. For serialization, the results compared to those from the earlier paper Smart Grid Serialization Comparison [3] (Fig. 8), show that the speed of the serializers is much more important than the size of the resulting serialized output. This is especially clear when looking at the bad performance of MsgPack and Avro (Jackson), which produce very small messages but are slower than most other binary serializers are. Generally, the results compared to the previous results are as expected with ProtoBuf (ProtoStuff) and ProtoStuff being the fastest, but one thing that is quite surprising is that Kryo does significantly worse than Fast-Serialization, and is no longer one of the fastest serializers.

7 communication. For the current setup, the serialization time is much more important than the size of the message, but the chance of a future DER having a processing unit with the performance of a Raspberry Pi is a lot bigger than it having a 100 Mbit/s data connection to the other DERs. Therefore, an important thing to investigate in the future is the impact of different processing units and different data connections, which could shift the balance for serialization between the importance of the size of the output and the serialization time. Fig. 8. Serialization time & size. [3] V. CONCLUSION The paper shows that there are much better middleware alternatives than XMPP & Web Services and that there are much better serialization alternatives than XML. All of which are advocated for by prevalent communication standards. The choice of middleware makes a significant difference in performance, with ZeroMQ, YAMI4, and ICE being the best, and being much better than XMPP and Web Services. The eventual choice should be determined by the characteristics of the middleware, which can be found in the earlier paper Smart Grid Communication Middleware Comparison [5]. The choice of serialization is even more important than the choice of middleware, especially because of the loss of performance with most serializers compared to using ProtoBuf (ProtoStuff) and ProtoStuff, which are by far the best choices, with a Raspberry Pi and a 100 Mbit/s data connection. The throughput measurements of up to 400 messages per second, and the latency measurements below 2 milliseconds, both for all messaging patterns, show how fast measurements and control commands could be delivered for distributed control systems. However, it should be considered that the distance between the actual devices will be longer, and therefore the throughput and latency will not be as good as for these tests, though a lot better than for a centralized control system with much longer distances. Compared to previous results the same middleware perform the best, with the only real difference being that Request-Reply performs much better with the current tests than for the earlier tests. For serialization, it was previously unknown whether the serializers with the smallest output size or the ones with the fastest serialization time would have the best performance when sending measurements and control commands using With the current setup, the potential impact of compression would most likely be that the best results would come from using no compression, as the time used for compression would offset the gain from smaller messages, however, if the processing unit was stronger compared to the data connection, the results would probably be quite different. When using the results, it should be considered that the objects that are serialized and sent are IEC logical node classed filled with random data for the required properties, which add a lot of overhead compared to more compact and primitive objects. The memory used by the middleware and serialization is outside the scope of this paper, but it can be seen for middleware and serialization individually from the earlier papers, along with data loss. REFERENCES [1] "Scientific American," [Online]. Available: [Accessed ]. [2] M. Albano, L. L. Ferreira, L. M. Pinho, A. R. Alkhawaja, "Messageoriented middleware for smart grids," in Computer Standards & Interfaces 38: , [3] L. Qilin, L. Mintian, "The state of the art in middleware," in Information Technology and Applications (IFITA), [4] A. Dworak, M. Sobczak, F. Ehm, W. Sliwinski, P. Charrue, "Middleware trends and market leaders 2011," in Conf. Proc.. Vol No. CERN-ATS , [5] B. Petersen, H. Bindner, S. You, B. Poulsen, "Smart Grid Communication Middleware Comparison," in SmartGreens, Porto, 2017, in press. [6] B. Petersen, H. Bindner, S. You and B. Petersen, "Smart Grid Serialization Comparison," in SAI Computing Conference, London, 2017, in press. [7] R. E. Mackiewicz, "Overview of IEC and Benefits," IEEE PES Power Systems Conference and Exposition, Atlanta, GA, pp , [8] C. McParland, "OpenADR open source toolkit: Developing open source software for the Smart Grid," IEEE Power and Energy Society General Meeting, San Diego, CA, pp. 1-7, [9] M. Uslar, S. Rohjans, S. Specht, J. M. G. Vázquez, "What is the CIM lacking?," IEEE PES Innovative Smart Grid Technologies Conference Europe (ISGT Europe), Gothenburg, pp. 1-8, 2010.

Smart Grid communication middleware comparison distributed control comparison for the internet of things

Smart Grid communication middleware comparison distributed control comparison for the internet of things Downloaded from orbit.dtu.dk on: Jul 25, 2018 Smart Grid communication middleware comparison distributed control comparison for the internet of things Petersen, Bo Søborg; Bindner, Henrik W.; Poulsen,

More information

XES Software Communication Extension

XES Software Communication Extension XES Software Communication Extension Leemans, M.; Liu, C. Published: 20/11/2017 Document Version Accepted manuscript including changes made at the peer-review stage Please check the document version of

More information

Modelling of Wind Turbine Blades with ABAQUS

Modelling of Wind Turbine Blades with ABAQUS Downloaded from orbit.dtu.dk on: Dec 21, 2017 Modelling of Wind Turbine Blades with ABAQUS Bitsche, Robert Publication date: 2015 Document Version Peer reviewed version Link back to DTU Orbit Citation

More information

IP lookup with low memory requirement and fast update

IP lookup with low memory requirement and fast update Downloaded from orbit.dtu.dk on: Dec 7, 207 IP lookup with low memory requirement and fast update Berger, Michael Stübert Published in: Workshop on High Performance Switching and Routing, 2003, HPSR. Link

More information

Building petabit/s data center network with submicroseconds latency by using fast optical switches Miao, W.; Yan, F.; Dorren, H.J.S.; Calabretta, N.

Building petabit/s data center network with submicroseconds latency by using fast optical switches Miao, W.; Yan, F.; Dorren, H.J.S.; Calabretta, N. Building petabit/s data center network with submicroseconds latency by using fast optical switches Miao, W.; Yan, F.; Dorren, H.J.S.; Calabretta, N. Published in: Proceedings of 20th Annual Symposium of

More information

Streaming Multimedia via Overlay Networks using Wi-Fi Peer-to-Peer Connections

Streaming Multimedia via Overlay Networks using Wi-Fi Peer-to-Peer Connections Downloaded from orbit.dtu.dk on: Nov 2, 28 Streaming Multimedia via Overlay Networks using Wi-Fi Peer-to-Peer Connections Poderys, Justas; Soler, José Published in: Proceedings of 9th IEEE International

More information

Syddansk Universitet. Værktøj til videndeling og interaktion. Dai, Zheng. Published in: inform. Publication date: 2009

Syddansk Universitet. Værktøj til videndeling og interaktion. Dai, Zheng. Published in: inform. Publication date: 2009 Syddansk Universitet Værktøj til videndeling og interaktion Dai, Zheng Published in: inform Publication date: 2009 Document version Peer-review version Citation for pulished version (APA): Dai, Z. (2009).

More information

Simulation of BSDF's generated with Window6 and TracePro prelimenary results

Simulation of BSDF's generated with Window6 and TracePro prelimenary results Downloaded from orbit.dtu.dk on: Aug 23, 2018 Simulation of BSDF's generated with Window6 and TracePro prelimenary results Iversen, Anne; Nilsson, Annica Publication date: 2011 Document Version Publisher's

More information

Tracking Human Mobility Using WiFi Signals

Tracking Human Mobility Using WiFi Signals Downloaded from orbit.dtu.dk on: Sep 10, 2018 Tracking Human Mobility Using WiFi Signals Sapiezynski, Piotr; Stopczynski, Arkadiusz; Gatej, Radu ; Jørgensen, Sune Lehmann Published in: P L o S One Link

More information

Online Conformance Checking for Petri Nets and Event Streams

Online Conformance Checking for Petri Nets and Event Streams Downloaded from orbit.dtu.dk on: Apr 30, 2018 Online Conformance Checking for Petri Nets and Event Streams Burattin, Andrea Published in: Online Proceedings of the BPM Demo Track 2017 Publication date:

More information

Integrating decision management with UML modeling concepts and tools

Integrating decision management with UML modeling concepts and tools Downloaded from orbit.dtu.dk on: Dec 17, 2017 Integrating decision management with UML modeling concepts and tools Könemann, Patrick Published in: Joint Working IEEE/IFIP Conference on Software Architecture,

More information

Energy-Efficient Routing in GMPLS Network

Energy-Efficient Routing in GMPLS Network Downloaded from orbit.dtu.dk on: Dec 19, 2017 Energy-Efficient Routing in GMPLS Network Wang, Jiayuan; Fagertun, Anna Manolova; Ruepp, Sarah Renée; Dittmann, Lars Published in: Proceedings of OPNETWORK

More information

Features of the architecture of decision support systems

Features of the architecture of decision support systems Features of the architecture of decision support systems van Hee, K.M. Published: 01/01/1987 Document Version Publisher s PDF, also known as Version of Record (includes final page, issue and volume numbers)

More information

Proposal for tutorial: Resilience in carrier Ethernet transport

Proposal for tutorial: Resilience in carrier Ethernet transport Downloaded from orbit.dtu.dk on: Jun 16, 2018 Proposal for tutorial: Resilience in carrier Ethernet transport Berger, Michael Stübert; Wessing, Henrik; Ruepp, Sarah Renée Published in: 7th International

More information

Performance auto-tuning of rectangular matrix-vector multiplication: how to outperform CUBLAS

Performance auto-tuning of rectangular matrix-vector multiplication: how to outperform CUBLAS Downloaded from orbit.dtu.dk on: Dec 23, 2018 Performance auto-tuning of rectangular matrix-vector multiplication: how to outperform CUBLAS Sørensen, Hans Henrik Brandenborg Publication date: 2010 Document

More information

DNP Communication Function with RTDS GTNET-DNP& ASE Interface Test Results

DNP Communication Function with RTDS GTNET-DNP& ASE Interface Test Results Downloaded from orbit.dtu.dk on: Nov 17, 2018 DNP Communication Function with RTDS GTNET-DNP& ASE Interface Test Results Cha, Seung-Tae; Wu, Qiuwei; Saleem, Arshad; Østergaard, Jacob Publication date:

More information

Visual support for work assignment in YAWL

Visual support for work assignment in YAWL Visual support for work assignment in YAWL Citation for published version (APA): Cardi, F., Leoni, de, M., Adams, M., Hofstede, ter, A. H. M., & Aalst, van der, W. M. P. (2009). Visual support for work

More information

Ideas to help making your research visible

Ideas to help making your research visible Downloaded from orbit.dtu.dk on: Dec 21, 2017 Ideas to help making your research visible Ekstrøm, Jeannette Publication date: 2015 Link back to DTU Orbit Citation (APA): Ekstrøm, J. (2015). Ideas to help

More information

Using the generalized Radon transform for detection of curves in noisy images

Using the generalized Radon transform for detection of curves in noisy images Downloaded from orbit.dtu.dk on: Jan 13, 2018 Using the generalized Radon transform for detection of curves in noisy images Toft, eter Aundal ublished in: Conference roceedings. 1996 IEEE International

More information

Reduction in Power Consumption of Packet Counter on VIRTEX-6 FPGA by Frequency Scaling. Pandey, Nisha; Pandey, Bishwajeet; Hussain, Dil muhammed Akbar

Reduction in Power Consumption of Packet Counter on VIRTEX-6 FPGA by Frequency Scaling. Pandey, Nisha; Pandey, Bishwajeet; Hussain, Dil muhammed Akbar Aalborg Universitet Reduction in Power Consumption of Packet Counter on VIRTEX-6 FPGA by Frequency Scaling Pandey, Nisha; Pandey, Bishwajeet; Hussain, Dil muhammed Akbar Published in: Proceedings of IEEE

More information

Aalborg Universitet. Just-In-Place Information for Mobile Device Interfaces Kjeldskov, Jesper. Published in: Paterno, F. (ed.)

Aalborg Universitet. Just-In-Place Information for Mobile Device Interfaces Kjeldskov, Jesper. Published in: Paterno, F. (ed.) Aalborg Universitet Just-In-Place Information for Mobile Device Interfaces Kjeldskov, Jesper Published in: Paterno, F. (ed.) DOI (link to publication from Publisher): 10.1007/3-540-45756-9_21 Publication

More information

Evaluation strategies in CT scanning

Evaluation strategies in CT scanning Downloaded from orbit.dtu.dk on: Dec 20, 2017 Evaluation strategies in CT scanning Hiller, Jochen Publication date: 2012 Document Version Publisher's PDF, also known as Version of record Link back to DTU

More information

Rotor Performance Enhancement Using Slats on the Inner Part of a 10MW Rotor

Rotor Performance Enhancement Using Slats on the Inner Part of a 10MW Rotor Downloaded from orbit.dtu.dk on: Oct 05, 2018 Rotor Performance Enhancement Using Slats on the Inner Part of a 10MW Rotor Gaunaa, Mac; Zahle, Frederik; Sørensen, Niels N.; Bak, Christian; Réthoré, Pierre-Elouan

More information

A GPU-based High-Performance Library with Application to Nonlinear Water Waves

A GPU-based High-Performance Library with Application to Nonlinear Water Waves Downloaded from orbit.dtu.dk on: Dec 20, 2017 Glimberg, Stefan Lemvig; Engsig-Karup, Allan Peter Publication date: 2012 Document Version Publisher's PDF, also known as Version of record Link back to DTU

More information

Mapping real-life applications on run-time reconfigurable NoC-based MPSoC on FPGA. Singh, A.K.; Kumar, A.; Srikanthan, Th.; Ha, Y.

Mapping real-life applications on run-time reconfigurable NoC-based MPSoC on FPGA. Singh, A.K.; Kumar, A.; Srikanthan, Th.; Ha, Y. Mapping real-life applications on run-time reconfigurable NoC-based MPSoC on FPGA. Singh, A.K.; Kumar, A.; Srikanthan, Th.; Ha, Y. Published in: Proceedings of the 2010 International Conference on Field-programmable

More information

Performance analysis and modelling of an OSA gateway

Performance analysis and modelling of an OSA gateway Performance analysis and modelling of an OSA gateway Andersson, Jens K; Nyberg, Christian; Kihl, Maria Published in: Personal Wireless Communications / Lecture Notes in Computer Science Published: 23-1-1

More information

Multibody Model for Planetary Gearbox of 500 kw Wind Turbine

Multibody Model for Planetary Gearbox of 500 kw Wind Turbine Downloaded from orbit.dtu.dk on: Oct 19, 2018 Multibody Model for Planetary Gearbox of 500 kw Wind Turbine Jørgensen, Martin Felix Publication date: 2013 Link back to DTU Orbit Citation (APA): Jørgensen,

More information

Document Version Publisher s PDF, also known as Version of Record (includes final page, issue and volume numbers)

Document Version Publisher s PDF, also known as Version of Record (includes final page, issue and volume numbers) The link between product data model and process model : the effect of changes in the product data model on the process model Vogelaar, J.J.C.L.; Reijers, H.A. Published: 01/01/2009 Document Version Publisher

More information

Determination of Angle of Attack (AOA) for Rotating Blades

Determination of Angle of Attack (AOA) for Rotating Blades Downloaded from orbit.dtu.dk on: Sep 1, 218 Determination of Angle of Attack (AOA) for Rotating Blades Shen, Wen Zhong; Hansen, Martin Otto Laver; Sørensen, Jens Nørkær Published in: Wind Energy Publication

More information

2.5D far-field diffraction tomography inversion scheme for GPR that takes into account the planar air-soil interface

2.5D far-field diffraction tomography inversion scheme for GPR that takes into account the planar air-soil interface Downloaded from orbit.dtu.dk on: Dec 17, 2017 2.5D far-field diffraction tomography inversion scheme for GPR that takes into account the planar air-soil interface Meincke, Peter Published in: Proceedings

More information

Building loosely coupled and scalable systems using Event-Driven Architecture. Jonas Bonér Patrik Nordwall Andreas Källberg

Building loosely coupled and scalable systems using Event-Driven Architecture. Jonas Bonér Patrik Nordwall Andreas Källberg Building loosely coupled and scalable systems using Event-Driven Architecture Jonas Bonér Patrik Nordwall Andreas Källberg Why is EDA Important for Scalability? What building blocks does EDA consists of?

More information

Energy-Aware Routing Optimization in Dynamic GMPLS Controlled Optical Networks

Energy-Aware Routing Optimization in Dynamic GMPLS Controlled Optical Networks Downloaded from orbit.dtu.dk on: Dec 20, 2018 Energy-Aware Routing Optimization in Dynamic GMPLS Controlled Optical Networks Wang, Jiayuan; Ricciardi, Sergio; Fagertun, Anna Manolova; Ruepp, Sarah Renée;

More information

WoPeD - A "Proof-of-Concept" Platform for Experimental BPM Research Projects

WoPeD - A Proof-of-Concept Platform for Experimental BPM Research Projects Downloaded from orbit.dtu.dk on: Sep 01, 2018 WoPeD - A "Proof-of-Concept" Platform for Experimental BPM Research Projects Freytag, Thomas ; Allgaier, Philip; Burattin, Andrea; Danek-Bulius, Andreas Published

More information

The multi-perspective process explorer

The multi-perspective process explorer The multi-perspective process explorer Mannhardt, F.; de Leoni, M.; Reijers, H.A. Published in: Proceedings of the Demo Session of the 13th International Conference on Business Process Management (BPM

More information

Neural Network modeling of forward and inverse behavior of rotary MR damper

Neural Network modeling of forward and inverse behavior of rotary MR damper Downloaded from orbit.dtu.dk on: Jan 25, 2019 Neural Network modeling of forward and inverse behavior of rotary MR damper Bhowmik, Subrata; Høgsberg, Jan Becker; Weber, Felix Published in: Proceedings

More information

Mobile network architecture of the long-range WindScanner system

Mobile network architecture of the long-range WindScanner system Downloaded from orbit.dtu.dk on: Jan 21, 2018 Mobile network architecture of the long-range WindScanner system Vasiljevic, Nikola; Lea, Guillaume; Hansen, Per; Jensen, Henrik M. Publication date: 2016

More information

Analysis of Energy Efficiency in Dynamic Optical Networks Employing Solar Energy Sources

Analysis of Energy Efficiency in Dynamic Optical Networks Employing Solar Energy Sources Downloaded from orbit.dtu.dk on: Dec 20, 2017 Analysis of Energy Efficiency in Dynamic Optical Networks Employing Solar Energy Sources Wang, Jiayuan; Fagertun, Anna Manolova; Ruepp, Sarah Renée; Dittmann,

More information

Report. Middleware Proxy: A Request-Driven Messaging Broker For High Volume Data Distribution

Report. Middleware Proxy: A Request-Driven Messaging Broker For High Volume Data Distribution CERN-ACC-2013-0237 Wojciech.Sliwinski@cern.ch Report Middleware Proxy: A Request-Driven Messaging Broker For High Volume Data Distribution W. Sliwinski, I. Yastrebov, A. Dworak CERN, Geneva, Switzerland

More information

Radiochemical analysis of important radionuclides in Nordic nuclear industry

Radiochemical analysis of important radionuclides in Nordic nuclear industry Downloaded from orbit.dtu.dk on: Dec 12, 2017 Radiochemical analysis of important radionuclides in Nordic nuclear industry Hou, Xiaolin Published in: Abstracts. XVII Conference of the NSFS Publication

More information

Suitability of thick-core plastic optical fibers to broadband in-home communication Forni, F.; Shi, Y.; Tangdiongga, E.; Koonen, A.M.J.

Suitability of thick-core plastic optical fibers to broadband in-home communication Forni, F.; Shi, Y.; Tangdiongga, E.; Koonen, A.M.J. Suitability of thick-core plastic optical fibers to broadband in-home communication Forni, F.; Shi, Y.; Tangdiongga, E.; Koonen, A.M.J. Published in: Proceedings of the 19th Annual Symposium of the IEEE

More information

Usage statistics and usage patterns on the NorduGrid: Analyzing the logging information collected on one of the largest production Grids of the world

Usage statistics and usage patterns on the NorduGrid: Analyzing the logging information collected on one of the largest production Grids of the world Usage statistics and usage patterns on the NorduGrid: Analyzing the logging information collected on one of the largest production Grids of the world Pajchel, K.; Eerola, Paula; Konya, Balazs; Smirnova,

More information

Analysis of Information Quality in event triggered Smart Grid Control Kristensen, Thomas le Fevre; Olsen, Rasmus Løvenstein; Rasmussen, Jakob Gulddahl

Analysis of Information Quality in event triggered Smart Grid Control Kristensen, Thomas le Fevre; Olsen, Rasmus Løvenstein; Rasmussen, Jakob Gulddahl Aalborg Universitet Analysis of Information Quality in event triggered Smart Grid Control Kristensen, Thomas le Fevre; Olsen, Rasmus Løvenstein; Rasmussen, Jakob Gulddahl Published in: IEEE 81st Vehicular

More information

Exercise in Configurable Products using Creo parametric

Exercise in Configurable Products using Creo parametric Downloaded from orbit.dtu.dk on: Dec 03, 2018 Exercise in Configurable Products using Creo parametric Christensen, Georg Kronborg Publication date: 2017 Document Version Peer reviewed version Link back

More information

Multi-Agent Programming Contest The Python-DTU Team

Multi-Agent Programming Contest The Python-DTU Team Downloaded from orbit.dtu.dk on: Jan 24, 2018 Multi-Agent Programming Contest 2012 - The Python-DTU Team Villadsen, Jørgen; Jensen, Andreas Schmidt; Ettienne, Mikko Berggren; Vester, Steen; Balsiger Andersen,

More information

Insulin acutely upregulates protein expression of the fatty acid transporter CD36 in human skeletal muscle in vivo

Insulin acutely upregulates protein expression of the fatty acid transporter CD36 in human skeletal muscle in vivo Insulin acutely upregulates protein expression of the fatty acid transporter CD36 in human skeletal muscle in vivo Citation for published version (APA): Corpeleijn, E., Pelsers, M. M. A. L., Soenen, S.,

More information

Getting state-space models from FEM simulations

Getting state-space models from FEM simulations Getting state-space models from FEM simulations van Schijndel, A.W.M. Published in: Proceedings of European Comsol Conference, 18-20 October 2017, Rotterdam, The Netherlands Published: 01/01/2017 Document

More information

Edinburgh Research Explorer

Edinburgh Research Explorer Edinburgh Research Explorer Profiling OGSA-DAI Performance for Common Use Patterns Citation for published version: Dobrzelecki, B, Antonioletti, M, Schopf, JM, Hume, AC, Atkinson, M, Hong, NPC, Jackson,

More information

Developing Mobile Systems using PalCom -- A Data Collection Example

Developing Mobile Systems using PalCom -- A Data Collection Example Developing Mobile Systems using PalCom -- A Data Collection Example Johnsson, Björn A; Magnusson, Boris 2012 Link to publication Citation for published version (APA): Johnsson, B. A., & Magnusson, B. (2012).

More information

Microservices Smaller is Better? Eberhard Wolff Freelance consultant & trainer

Microservices Smaller is Better? Eberhard Wolff Freelance consultant & trainer Microservices Smaller is Better? Eberhard Wolff Freelance consultant & trainer http://ewolff.com Why Microservices? Why Microservices? Strong modularization Replaceability Small units Sustainable Development

More information

Analysis of Timing Requirements for Data Aggregation and Control in Smart Grids

Analysis of Timing Requirements for Data Aggregation and Control in Smart Grids Downloaded from vbn.aau.dk on: januar 15, 2019 Aalborg Universitet Analysis of Timing Requirements for Data Aggregation and Control in Smart Grids Kemal, Mohammed Seifu; Olsen, Rasmus Løvenstein Published

More information

Spatial Accuracy of Embedded Surface Coloring in Color 3D Printing

Spatial Accuracy of Embedded Surface Coloring in Color 3D Printing Downloaded from orbit.dtu.dk on: Jun 0, 08 Spatial Accuracy of Embedded Surface Coloring in Color D Printing Pedersen, David Bue; Hansen, Hans Nørgaard; Eiríksson, Eyþór Rúnar Published in: Proceedings

More information

Single Wake Meandering, Advection and Expansion - An analysis using an adapted Pulsed Lidar and CFD LES-ACL simulations

Single Wake Meandering, Advection and Expansion - An analysis using an adapted Pulsed Lidar and CFD LES-ACL simulations Downloaded from orbit.dtu.dk on: Jan 10, 2019 Single Wake Meandering, Advection and Expansion - An analysis using an adapted Pulsed Lidar and CFD LES-ACL simulations Machefaux, Ewan; Larsen, Gunner Chr.;

More information

Published in: Proceedings of the 3rd International Symposium on Environment-Friendly Energies and Applications (EFEA 2014)

Published in: Proceedings of the 3rd International Symposium on Environment-Friendly Energies and Applications (EFEA 2014) Aalborg Universitet SSTL I/O Standard based environment friendly energyl efficient ROM design on FPGA Bansal, Neha; Bansal, Meenakshi; Saini, Rishita; Pandey, Bishwajeet; Kalra, Lakshay; Hussain, Dil muhammed

More information

Area Limitations on Smart Grid Computer Networks

Area Limitations on Smart Grid Computer Networks I.J. Wireless and Microwave Technologies, 2016, 3, 71-78 Published Online May 2016 in MECS(http://www.mecs-press.net) DOI: 10.5815/ijwmt.2016.03.08 Available online at http://www.mecs-press.net/ijwmt Area

More information

Published in: Mobile Wireless Middleware, Operating Systems, and Applications - Workshops

Published in: Mobile Wireless Middleware, Operating Systems, and Applications - Workshops Aalborg Universitet Connecting the islands - enabling global connectivity through local cooperation Heide, Janus; Pedersen, Morten Videbæk; Fitzek, Frank Hanns Paul; Larsen, Torben Published in: Mobile

More information

Why Enterprises Need to Optimize Their Data Centers

Why Enterprises Need to Optimize Their Data Centers White Paper Why Enterprises Need to Optimize Their Data Centers Introduction IT executives have always faced challenges when it comes to delivering the IT services needed to support changing business goals

More information

Citation for published version (APA): Berthing, H. H. (2014). Vision for IT Audit Abstract from Nordic ISACA Conference 2014, Oslo, Norway.

Citation for published version (APA): Berthing, H. H. (2014). Vision for IT Audit Abstract from Nordic ISACA Conference 2014, Oslo, Norway. Aalborg Universitet Vision for IT Audit 2020 Berthing, Hans Henrik Aabenhus Publication date: 2014 Document Version Early version, also known as pre-print Link to publication from Aalborg University Citation

More information

Aalborg Universitet. Mobile Phone Antenna Performance 2013 Pedersen, Gert F. Publication date: 2013

Aalborg Universitet. Mobile Phone Antenna Performance 2013 Pedersen, Gert F. Publication date: 2013 Aalborg Universitet Mobile Phone Antenna 2013 Pedersen, Gert F. Publication date: 2013 Document Version Early version, also known as pre-print Link to publication from Aalborg University Citation for published

More information

Towards a Framework for Modelling and Verification of Relay Interlocking Systems

Towards a Framework for Modelling and Verification of Relay Interlocking Systems Downloaded from orbit.dtu.dk on: May 02, 2018 Towards a Framework for Modelling and Verification of Relay Interlocking Systems Haxthausen, Anne Elisabeth Published in: Modeling, Development and Verification

More information

Efficient realization of the block frequency domain adaptive filter Schobben, D.W.E.; Egelmeers, G.P.M.; Sommen, P.C.W.

Efficient realization of the block frequency domain adaptive filter Schobben, D.W.E.; Egelmeers, G.P.M.; Sommen, P.C.W. Efficient realization of the block frequency domain adaptive filter Schobben, D.W.E.; Egelmeers, G.P..; Sommen, P.C.W. Published in: Proc. ICASSP 97, 1997 IEEE International Conference on Acoustics, Speech,

More information

Visualisation of ergonomic guidelines

Visualisation of ergonomic guidelines Visualisation of ergonomic guidelines Widell Blomé, Mikael; Odenrick, Per; Andersson, M; Svensson, S Published: 2002-01-01 Link to publication Citation for published version (APA): Blomé, M., Odenrick,

More information

Tilburg University. The use of canonical analysis Kuylen, A.A.A.; Verhallen, T.M.M. Published in: Journal of Economic Psychology

Tilburg University. The use of canonical analysis Kuylen, A.A.A.; Verhallen, T.M.M. Published in: Journal of Economic Psychology Tilburg University The use of canonical analysis Kuylen, A.A.A.; Verhallen, T.M.M. Published in: Journal of Economic Psychology Publication date: 1981 Link to publication Citation for published version

More information

Eventpad : a visual analytics approach to network intrusion detection and reverse engineering Cappers, B.C.M.; van Wijk, J.J.; Etalle, S.

Eventpad : a visual analytics approach to network intrusion detection and reverse engineering Cappers, B.C.M.; van Wijk, J.J.; Etalle, S. Eventpad : a visual analytics approach to network intrusion detection and reverse engineering Cappers, B.C.M.; van Wijk, J.J.; Etalle, S. Published in: European Cyper Security Perspectives 2018 Published:

More information

An alternative to scale-space representation for extracting local features in image recognition

An alternative to scale-space representation for extracting local features in image recognition Aalborg Universitet An alternative to scale-space representation for extracting local features in image recognition Andersen, Hans Jørgen; Nguyen, Phuong Giang Published in: International Conference on

More information

History Matching: Towards Geologically Reasonable Models

History Matching: Towards Geologically Reasonable Models Downloaded from orbit.dtu.dk on: Oct 13, 018 History Matching: Towards Geologically Reasonable Models Melnikova, Yulia; Cordua, Knud Skou; Mosegaard, Klaus Publication date: 01 Document Version Publisher's

More information

Navigation and Tree Mapping in Orchards

Navigation and Tree Mapping in Orchards Downloaded from orbit.dtu.dk on: Jan 31, 2018 Navigation and Tree Mapping in Orchards Jæger, Claes Lund Dühring; Griepentrog, Hans W. ; Andersen, Jens Christian Publication date: 2012 Document Version

More information

Micro-CT in situ study of carbonate rock microstructural evolution for geologic CO2 storage

Micro-CT in situ study of carbonate rock microstructural evolution for geologic CO2 storage Downloaded from orbit.dtu.dk on: Apr 10, 2018 Micro-CT in situ study of carbonate rock microstructural evolution for geologic CO2 storage Zheng, Yi; Yang, Yan; Rogowska, M.; Gundlach, Carsten Published

More information

On the Minimum Number of Spanning Trees in k-edge-connected Graphs

On the Minimum Number of Spanning Trees in k-edge-connected Graphs Downloaded from orbit.dtu.dk on: Sep 16, 2018 On the Minimum Number of Spanning Trees in k-edge-connected Graphs Ok, Seongmin; Thomassen, Carsten Published in: Journal of Graph Theory Link to article,

More information

Fast Multi Operand Decimal Adders using Digit Compressors with Decimal Carry Generation

Fast Multi Operand Decimal Adders using Digit Compressors with Decimal Carry Generation Downloaded from orbit.dtu.dk on: Dec, Fast Multi Operand Decimal Adders using Digit Compressors with Decimal Carry Generation Dadda, Luigi; Nannarelli, Alberto Publication date: Document Version Publisher's

More information

5G Readiness Survey 2017

5G Readiness Survey 2017 5G Readiness Survey 2017 An assessment of operators progress on the road to 5G 1 5G READINESS SURVEY 2017: AN ASSESSMENT OF OPERATORS PROGRESS ON THE ROAD TO 5G Are Operators Ready for 5G? 5G next-generation

More information

Citation for published version (APA): Bhanderi, D. (2001). ACS Rømer Algorithms Verification and Validation. RØMER.

Citation for published version (APA): Bhanderi, D. (2001). ACS Rømer Algorithms Verification and Validation. RØMER. Aalborg Universitet ACS Rømer Algorithms Verification and Validation Bhanderi, Dan Publication date: 2001 Document Version Publisher's PDF, also known as Version of record Link to publication from Aalborg

More information

Retrieval of 3D-position of a Passive Object Using Infrared LED s and Photodiodes Christensen, Henrik Vie

Retrieval of 3D-position of a Passive Object Using Infrared LED s and Photodiodes Christensen, Henrik Vie Aalborg Universitet Retrieval of 3D-position of a Passive Object Using Infrared LED s and Photodiodes Christensen, Henrik Vie Publication date: 24 Document Version Publisher's PDF, also known as Version

More information

HT-Paxos: High Throughput State-Machine Replication Protocol for Large Clustered Data Centers

HT-Paxos: High Throughput State-Machine Replication Protocol for Large Clustered Data Centers 1 HT-Paxos: High Throughput State-Machine Replication Protocol for Large Clustered Data Centers Vinit Kumar 1 and Ajay Agarwal 2 1 Associate Professor with the Krishna Engineering College, Ghaziabad, India.

More information

Towards Grading Gleason Score using Generically Trained Deep convolutional Neural Networks

Towards Grading Gleason Score using Generically Trained Deep convolutional Neural Networks Towards Grading Gleason Score using Generically Trained Deep convolutional Neural Networks Källén, Hanna; Molin, Jesper; Heyden, Anders; Lundström, Claes; Åström, Karl Published in: 2016 IEEE 13th International

More information

Accelerating Dense Linear Algebra on the GPU

Accelerating Dense Linear Algebra on the GPU Downloaded from orbit.dtu.dk on: Nov 2, 218 Sørensen, Hans Henrik Brandenborg Publication date: 211 Document Version Publisher's PDF, also known as Version of record Link back to DTU Orbit Citation (APA):

More information

Aalborg Universitet. A new approach for detecting local features Nguyen, Phuong Giang; Andersen, Hans Jørgen

Aalborg Universitet. A new approach for detecting local features Nguyen, Phuong Giang; Andersen, Hans Jørgen Aalborg Universitet A new approach for detecting local features Nguyen, Phuong Giang; Andersen, Hans Jørgen Published in: International Conference on Computer Vision Theory and Applications Publication

More information

Published in: Proceedings of the 3rd International Symposium on Environment-Friendly Energies and Applications (EFEA 2014)

Published in: Proceedings of the 3rd International Symposium on Environment-Friendly Energies and Applications (EFEA 2014) Aalborg Universitet SSTL I/O Standard Based Environment Friendly Energy Efficient ROM Design on FPGA Bansal, Neha; Bansal, Meenakshi; Saini, Rishita; Pandey, Bishwajeet; Kalra, Lakshay; Hussain, Dil muhammed

More information

Experimental Validation and Model Verification for a Novel Geometry ICPC Solar Collector

Experimental Validation and Model Verification for a Novel Geometry ICPC Solar Collector Downloaded from orbit.dtu.dk on: Dec 2, 27 Experimental Validation and Model Verification for a Novel Geometry ICPC Solar Collector Perers, Bengt; Duff, William S. ; Daosukho, Jirachote Publication date:

More information

Reduction of Topological Connectivity Information in Electric Power Grids

Reduction of Topological Connectivity Information in Electric Power Grids Downloaded from orbit.dtu.dk on: Oct 16, 2018 Reduction of Topological Connectivity Information in Electric Power Grids Prostejovsky, Alexander Maria; Gehrke, Oliver; Marinelli, Mattia; Uslar, Mathias

More information

Isointense infant brain MRI segmentation with a dilated convolutional neural network Moeskops, P.; Pluim, J.P.W.

Isointense infant brain MRI segmentation with a dilated convolutional neural network Moeskops, P.; Pluim, J.P.W. Isointense infant brain MRI segmentation with a dilated convolutional neural network Moeskops, P.; Pluim, J.P.W. Published: 09/08/2017 Document Version Author s version before peer-review Please check

More information

Developing Seamless Discovery of Scholarly and Trade Journal Resources Via OAI and RSS Chumbe, Santiago Segundo; MacLeod, Roddy

Developing Seamless Discovery of Scholarly and Trade Journal Resources Via OAI and RSS Chumbe, Santiago Segundo; MacLeod, Roddy Heriot-Watt University Heriot-Watt University Research Gateway Developing Seamless Discovery of Scholarly and Trade Journal Resources Via OAI and RSS Chumbe, Santiago Segundo; MacLeod, Roddy Publication

More information

Achieve Significant Throughput Gains in Wireless Networks with Large Delay-Bandwidth Product

Achieve Significant Throughput Gains in Wireless Networks with Large Delay-Bandwidth Product Available online at www.sciencedirect.com ScienceDirect IERI Procedia 10 (2014 ) 153 159 2014 International Conference on Future Information Engineering Achieve Significant Throughput Gains in Wireless

More information

Branch prediction in the pentium family

Branch prediction in the pentium family Downloaded from orbit.dtu.dk on: Nov 09, 2017 Branch prediction in the pentium family Fog, Agner Published in: Dr. Dobb's Journal Publication date: 1998 Document Version Publisher's PDF, also known as

More information

Robust and computationally efficient dynamic simulation of ORC systems: the thermocycle Modelica library

Robust and computationally efficient dynamic simulation of ORC systems: the thermocycle Modelica library Downloaded from orbit.dtu.dk on: Mar 11, 2018 Robust and computationally efficient dynamic simulation of ORC systems: the thermocycle Modelica library Quoilin, S.; Desideri, A.; Bell, I.; Wronski, Jorrit;

More information

What protocol to choose

What protocol to choose Performance of SOAP/HTTP vs. SOAP/JMS What protocol to choose Today SOA is most prevalent enterprise architecture style. In most cases services (S in SOA) are realized using web services specification(s).

More information

An IMS testbed for SIP applications

An IMS testbed for SIP applications Downloaded from orbit.dtu.dk on: Feb 24, 2018 An IMS testbed for SIP applications Caba, Cosmin Marius; Soler, José Published in: Proceedings of IIT Real-Time Communications Conference Publication date:

More information

Published in: 11th International Conference on Advanced Communication Technology, ICACT 2009

Published in: 11th International Conference on Advanced Communication Technology, ICACT 2009 Aalborg Universitet Multi-perspective guidelines for the design of new network planning tools a case study Cecilio, Sergio Labeage; Pedersen, Jens Myrup; Lopez, Jose Manuel Guterrez Lopez; Riaz, Tahir;

More information

OPC UA A NEW COMMUNICATION FRAMEWORK FOR INDUSTRY 4.0 GERHARD HELFRICH, SOFTWARE DEVELOPER, STEMMER IMAGING

OPC UA A NEW COMMUNICATION FRAMEWORK FOR INDUSTRY 4.0 GERHARD HELFRICH, SOFTWARE DEVELOPER, STEMMER IMAGING OPC UA A NEW COMMUNICATION FRAMEWORK FOR INDUSTRY 4.0 GERHARD HELFRICH, SOFTWARE DEVELOPER, STEMMER IMAGING MOTIVATION Cloud SEITE 2 MOTIVATION Cloud EtherCat ProfiNet Fixed partner in level above Many

More information

Direct Measurement of Power Dissipated by Monte Carlo Simulations on CPU and FPGA Platforms

Direct Measurement of Power Dissipated by Monte Carlo Simulations on CPU and FPGA Platforms Downloaded from orbit.dtu.dk on: Sep 26, 2018 Direct Measurement of Power Dissipated by Monte Carlo Simulations on CPU and FPGA Platforms Albicocco, Pietro; Papini, Davide; Nannarelli, Alberto Publication

More information

School of Computer and Information Science

School of Computer and Information Science School of Computer and Information Science CIS Research Placement Report Multiple threads in floating-point sort operations Name: Quang Do Date: 8/6/2012 Supervisor: Grant Wigley Abstract Despite the vast

More information

A hybrid medium access control for convergence of broadband wireless and wireline ATM networks

A hybrid medium access control for convergence of broadband wireless and wireline ATM networks Downloaded from orbit.dtu.dk on: Oct 07, 2018 A hybrid medium access control for convergence of broadband wireless and wireline ATM networks Liu, Hong; Gliese, Ulrik Bo; Dittmann, Lars Published in: Proceeding

More information

Framework for Optimizing Cluster Selection using Geo-assisted Movement Prediction

Framework for Optimizing Cluster Selection using Geo-assisted Movement Prediction Downloaded from vbn.aau.dk on: marts 3, 219 Aalborg Universitet Framework for Optimizing Cluster Selection using Geo-assisted Movement Kristensen, Thomas Sander; Madsen, Jacob Theilgaard; Pedersen, Michael

More information

Three-dimensional analytical field calculation of pyramidal-frustum shaped permanent magnets Janssen, J.L.G.; Paulides, J.J.H.; Lomonova, E.A.

Three-dimensional analytical field calculation of pyramidal-frustum shaped permanent magnets Janssen, J.L.G.; Paulides, J.J.H.; Lomonova, E.A. Three-dimensional analytical field calculation of pyramidal-frustum shaped permanent magnets Janssen, J.L.G.; Paulides, J.J.H.; Lomonova, E.A. Published in: IEEE Transactions on Magnetics DOI: 10.1109/TMAG.2009.2021861

More information

Aalborg Universitet. Published in: Proceedings of the 19th Nordic Seminar on Computational Mechanics. Publication date: 2006

Aalborg Universitet. Published in: Proceedings of the 19th Nordic Seminar on Computational Mechanics. Publication date: 2006 Aalborg Universitet Topology Optimization - Improved Checker-Board Filtering With Sharp Contours Pedersen, Christian Gejl; Lund, Jeppe Jessen; Damkilde, Lars; Kristensen, Anders Schmidt Published in: Proceedings

More information

Distributed Systems Exam 1 Review Paul Krzyzanowski. Rutgers University. Fall 2016

Distributed Systems Exam 1 Review Paul Krzyzanowski. Rutgers University. Fall 2016 Distributed Systems 2015 Exam 1 Review Paul Krzyzanowski Rutgers University Fall 2016 1 Question 1 Why did the use of reference counting for remote objects prove to be impractical? Explain. It s not fault

More information

Analysis of internal network requirements for the distributed Nordic Tier-1

Analysis of internal network requirements for the distributed Nordic Tier-1 Journal of Physics: Conference Series Analysis of internal network requirements for the distributed Nordic Tier-1 To cite this article: G Behrmann et al 2010 J. Phys.: Conf. Ser. 219 052001 View the article

More information

Fill er Up: Winners and Losers for Filling an Ordered Container

Fill er Up: Winners and Losers for Filling an Ordered Container Fill er Up: Winners and Losers for Filling an Ordered Container David Kieras & Steve Plaza, EECS Department, University of Michigan A handy and common component is an ordered container, one that contains

More information

ICTs AND SUSTAINABLE ENERGY: Realizing the Full Potential

ICTs AND SUSTAINABLE ENERGY: Realizing the Full Potential ICTs AND SUSTAINABLE ENERGY: Realizing the Full Potential STEPHEN HARPER GLOBAL DIRECTOR ENERGY AND ENVIRONMENT POLICY OCTOBER 2012 You Need to Have a Smart Society To Have a Sustainable Society If consumption

More information

Locally unique labeling of model elements for state-based model differences

Locally unique labeling of model elements for state-based model differences Locally unique labeling of model elements for state-based model differences Citation for published version (APA): Protic, Z. (2010). Locally unique labeling of model elements for state-based model differences.

More information

Controller Synthesis for Hardware Accelerator Design

Controller Synthesis for Hardware Accelerator Design ler Synthesis for Hardware Accelerator Design Jiang, Hongtu; Öwall, Viktor 2002 Link to publication Citation for published version (APA): Jiang, H., & Öwall, V. (2002). ler Synthesis for Hardware Accelerator

More information