XES Software Communication Extension

Size: px
Start display at page:

Download "XES Software Communication Extension"

Transcription

1 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 this publication: A submitted manuscript is the author's version of the article upon submission and before peer-review. There can be important differences between the submitted version and the official published version of record. People interested in the research are advised to contact the author for the final version of the publication, or visit the DOI to the publisher's website. The final author version and the galley proof are versions of the publication after peer review. The final published version features the final layout of the paper including the volume, issue and page numbers. Link to publication Citation for published version (APA): Leemans, M., & Liu, C. (2017). XES Software Communication Extension. s.l.: XES Working Group. 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? Take down policy 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. Download date: 04. Jan. 2018

2 XES Software Communication Extension M. Leemans C. Liu June 22, 2017 Documents: XES Software Communication Extension Authors: M. Leemans, C. Liu Date: June 22, 2017 Version: Introduction and Background During the execution of software, execution data can be recorded. With the development of process mining techniques on the one hand, and the growing availability of software execution data on the other hand, a new form of software analytics comes into reach. That is, applying process mining techniques to analyze software execution data. To enable process mining for software, event logs should be capable of capturing software-specific data. In the context of multi-process and distributed software, there are multiple software applications interacting and communicating with each other. The Software Communication extension supports recording IP-based communication for relating events across software applications. Extension definition Name: Prefix: URI: XML: Software Communication swcomm <extension name="software Communication" prefix="swcomm" uri=" The remainder of this extension is organized as follows. In Section 2 we explain some basic terminology. In Section 3 we detail how communication is recorded. Section 4 provides an example, and the XES Extension definition is given in Section 4.1. Finally, in Section 5 provides a reference glossary. 1

3 2 Terminology In this extension, we will use some software-specific terminology. We provided a reference glossary in Section 5. For this extension, we will assume the use of the IP protocol. In a multi-process or distributed software application, multiple programs are collaborating. Whenever a program A is collaborating with program B, for example, to request a service, they use a communication channel. Such a communication channel is identified by two endpoints: a local and a remote endpoint. Each endpoint is described by a combination of a host and a port. For example, suppose program A runs on host at port 9000, and program B runs on host at port Then, when A sends some data to B, we can record two events: 1) the sending of data with local endpoint :9000 and remote endpoint :9021, and 2) the receiving of data with local endpoint :9021 and remote endpoint :9000. Observe that events can be related across applications through matching endpoints. 3 Communication Information At runtime, whenever an application communicates with another program, it does so over a communication channel. Such a communication channel is identified by two endpoints: a local and a remote endpoint. Each endpoint is described by a combination of a host and a port. Typical candidate locations for evens with communication information are sockets and other network or communication layer software code. Level Key Type Description event localhost string The local host name for the local endpoint. event localport int The local port for the local endpoint. event remotehost string The remote host name for the remote endpoint. event remoteport int The remote port for the remote endpoint. 4 Example In Listing 1 an example XES trace is given for a simple client-server application. In Figure 1, a message sequence diagram is given as a visual aid. We assume a setup with three applications: ClientA at :9000, ClientB at :9001 and Server at :9021. In this example, first ClientA, and then ClientB, performs a requestservice. At the Server, first the request from ClientB arrives, and after that the request from ClientA. Using the communication information, we can track these requests and event correlations. This example log consists of 1 trace with 8 events. 2

4 1) sending from ClientA to Server 3) receiving from ClientB at Server ClientA ClientB Server 1) :9000 2) 3) :9001 6) 4) 5) :9021 8) 7) Figure 1: Message sequence diagram for the events in Listing 1. The numbers 1) to 8) refer to the actual events in Listing 1. Listing 1: Example XES log for a simple client-server application. 1 <log> 2 <extension name="concept" prefix="concept" 3 uri=" 4 <extension name="software Communication" prefix="swcomm" 5 uri=" 6 <trace> 7 <event> 1) sending data from ClientA to Server 8 <string key="concept:name" value="requestservice" /> 9 <string key="swcomm:localhost" value=" " /> 10 <int key="swcomm:localport" value="9000" /> 11 <string key="swcomm:remotehost" value=" " /> 12 <int key="swcomm:remoteport" value="9021" /> 13 </event> 14 <event> 2) sending data from ClientB to Server 15 <string key="concept:name" value="requestservice" /> 16 <string key="swcomm:localhost" value=" " /> 17 <int key="swcomm:localport" value="9001" /> 18 <string key="swcomm:remotehost" value=" " /> 19 <int key="swcomm:remoteport" value="9021" /> 20 </event> 21 <event> 3) receiving data from ClientB at Server 22 <string key="concept:name" value="receiverequest" /> 23 <string key="swcomm:localhost" value=" " /> 24 <int key="swcomm:localport" value="9021" /> 25 <string key="swcomm:remotehost" value=" " /> 26 <int key="swcomm:remoteport" value="9001" /> 27 </event> 28 <event> 4) receiving data from ClientA at Server 29 <string key="concept:name" value="receiverequest" /> 30 <string key="swcomm:localhost" value=" " /> 31 <int key="swcomm:localport" value="9021" /> 32 <string key="swcomm:remotehost" value=" " /> 33 <int key="swcomm:remoteport" value="9000" /> 34 </event> 35 <event> 5) sending data from Server to ClientB 36 <string key="concept:name" value="handlerequest" /> 37 <string key="swcomm:localhost" value=" " /> 38 <int key="swcomm:localport" value="9021" /> 39 <string key="swcomm:remotehost" value=" " /> 40 <int key="swcomm:remoteport" value="9001" /> 41 </event> 3

5 42 <event> 6) receiving data from Server at ClientB 43 <string key="concept:name" value="receiveresponse" /> 44 <string key="swcomm:localhost" value=" " /> 45 <int key="swcomm:localport" value="9001" /> 46 <string key="swcomm:remotehost" value=" " /> 47 <int key="swcomm:remoteport" value="9021" /> 48 </event> 49 <event> 7) sending data from Server to ClientA 50 <string key="concept:name" value="handlerequest" /> 51 <string key="swcomm:localhost" value=" " /> 52 <int key="swcomm:localport" value="9021" /> 53 <string key="swcomm:remotehost" value=" " /> 54 <int key="swcomm:remoteport" value="9000" /> 55 </event> 56 <event> 8) receiving data from Server at ClientA 57 <string key="concept:name" value="receiveresponse" /> 58 <string key="swcomm:localhost" value=" " /> 59 <int key="swcomm:localport" value="9000" /> 60 <string key="swcomm:remotehost" value=" " /> 61 <int key="swcomm:remoteport" value="9021" /> 62 </event> 63 </trace> 64 </log> 4.1 XES Extension Listing 2: XES Extension - Software Communication. 1 <extension name="software Communication" prefix="swcomm" 2 uri=" 3 <event> 4 <string key="localhost"> 5 <alias mapping="en" name="local endpoint - host name"/> 6 </string> 7 <int key="localport"> 8 <alias mapping="en" name="local endpoint - port"/> 9 </int> 10 <string key="remotehost"> 11 <alias mapping="en" name="remote endpoint - host name"/> 12 </string> 13 <int key="remoteport"> 14 <alias mapping="en" name="remote endpoint - port"/> 15 </int> 16 </event> 17 </extension> 5 Glossary local The local endpoint is the current application. remote The remote endpoint is the destination application to which is communicated. host The host address identifies a machine or node. port The port is a communication endpoint, identifying a service on a host machine. 4

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

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

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

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

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

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

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

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

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

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

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

MoviCompile : An LLVM based compiler for heterogeneous SIMD code generation Diken, E.; Jordans, R.; O'Riordan, M.

MoviCompile : An LLVM based compiler for heterogeneous SIMD code generation Diken, E.; Jordans, R.; O'Riordan, M. MoviCompile : An LLVM based compiler for heterogeneous SIMD code generation Diken, E.; Jordans, R.; O'Riordan, M. Published in: FOSDEM 2015, 31 January- 1 February 2015, Brussels, Belgium Published: 01/01/2015

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

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

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

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

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

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

Robot programming by demonstration

Robot programming by demonstration Robot programming by demonstration Denasi, A.; Verhaar, B.T.; Kostic, D.; Bruijnen, D.J.H.; Nijmeijer, H.; Warmerdam, T.P.H. Published in: Proceedings of the 1th Philips Conference on Applications of Control

More information

van Gool, L.C.M.; Jonkers, H.B.M.; Luit, E.J.; Kuiper, R.; Roubtsov, S.

van Gool, L.C.M.; Jonkers, H.B.M.; Luit, E.J.; Kuiper, R.; Roubtsov, S. Plug-ins for ISpec van Gool, L.C.M.; Jonkers, H.B.M.; Luit, E.J.; Kuiper, R.; Roubtsov, S. Published in: Proceedings 5th PROGRESS Symposium on Embedded Systems (Nieuwegein, The Netherlands, October 20,

More information

Quality improving techniques in DIBR for free-viewpoint video Do, Q.L.; Zinger, S.; Morvan, Y.; de With, P.H.N.

Quality improving techniques in DIBR for free-viewpoint video Do, Q.L.; Zinger, S.; Morvan, Y.; de With, P.H.N. Quality improving techniques in DIBR for free-viewpoint video Do, Q.L.; Zinger, S.; Morvan, Y.; de With, P.H.N. Published in: Proceedings of the 3DTV Conference : The True Vision - Capture, Transmission

More information

Pattern-based evaluation of Oracle-BPEL

Pattern-based evaluation of Oracle-BPEL Pattern-based evaluation of Oracle-BPEL Mulyar, N.A. Published: 01/01/2005 Document Version Publisher s PDF, also known as Version of Record (includes final page, issue and volume numbers) Please check

More information

De nauwkeurigheid van de krachtopnemer

De nauwkeurigheid van de krachtopnemer De nauwkeurigheid van de krachtopnemer Citation for published version (APA): van Heck, J. G. A. M. (1981). De nauwkeurigheid van de krachtopnemer. (DCT rapporten; Vol. 1981.018). Eindhoven: Technische

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

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

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

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

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

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

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

Edinburgh Research Explorer

Edinburgh Research Explorer Edinburgh Research Explorer Quantity-quality interactions in Welsh vowels: Phonologization across dialects Citation for published version: Iosad, P 2015, 'Quantity-quality interactions in Welsh vowels:

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

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

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

MMI reflectors with free selection of reflection to transmission ratio Kleijn, E.; Vries, de, T.; Ambrosius, H.P.M.M.; Smit, M.K.; Leijtens, X.J.M.

MMI reflectors with free selection of reflection to transmission ratio Kleijn, E.; Vries, de, T.; Ambrosius, H.P.M.M.; Smit, M.K.; Leijtens, X.J.M. MMI reflectors with free selection of reflection to transmission ratio Kleijn, E.; Vries, de, T.; Ambrosius, H.P.M.M.; Smit, M.K.; Leijtens, X.J.M. Published in: Proceedings of the 15th Annual Symposium

More information

Institutional Repository - Research Portal Dépôt Institutionnel - Portail de la Recherche

Institutional Repository - Research Portal Dépôt Institutionnel - Portail de la Recherche Institutional Repository - Research Portal Dépôt Institutionnel - Portail de la Recherche researchportal.unamur.be THESIS / THÈSE DOCTOR OF SCIENCES Methodology for automating web usability and accessibility

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

Toevallige afwijkingen bij het meten van eigenschappen van random signalen van Heck, J.G.A.M.

Toevallige afwijkingen bij het meten van eigenschappen van random signalen van Heck, J.G.A.M. Toevallige afwijkingen bij het meten van eigenschappen van random signalen van Heck, J.G.A.M. Gepubliceerd: 01/01/1982 Document Version Uitgevers PDF, ook bekend als Version of Record Please check the

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

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

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

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

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

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

Monotonicity of the throughput in single server production and assembly networks with respect to the buffer sizes Adan, I.J.B.F.; van der Wal, J.

Monotonicity of the throughput in single server production and assembly networks with respect to the buffer sizes Adan, I.J.B.F.; van der Wal, J. Monotonicity of the throughput in single server production and assembly networks with respect to the buffer sizes Adan, I.J.B.F.; van der Wal, J. Published: 01/01/1987 Document Version Publisher s PDF,

More information

Tilburg University. European architect law van Gulijk, Stéphanie. Publication date: Link to publication

Tilburg University. European architect law van Gulijk, Stéphanie. Publication date: Link to publication Tilburg University European architect law van Gulijk, Stéphanie Publication date: 2008 Link to publication Citation for published version (APA): van Gulijk, S. (2008). European architect law: Towards a

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

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

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

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

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

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

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

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

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

Improving design processes through structured reflection : a prototype software tool Reymen, I.M.M.J.; Melby, E.

Improving design processes through structured reflection : a prototype software tool Reymen, I.M.M.J.; Melby, E. Improving design processes through structured reflection : a prototype software tool Reymen, I.M.M.J.; Melby, E. Published: 01/01/2001 Document Version Publisher s PDF, also known as Version of Record

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

Predictive models for accidents on urban links - A focus on vulnerable road users

Predictive models for accidents on urban links - A focus on vulnerable road users Predictive models for accidents on urban links - A focus on vulnerable road users Jonsson, Thomas Published: 25-1-1 Link to publication Citation for published version (APA): Jonsson, T. (25). Predictive

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

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

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

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

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

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

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

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

Teaching hypertext and hypermedia through the web

Teaching hypertext and hypermedia through the web Teaching hypertext and hypermedia through the web De Bra, P.M.E. Published in: Journal of Universal Computer Science DOI: 10.3217/jucs-002-12-0797 Published: 01/01/1996 Document Version Publisher s PDF,

More information

Conversion of free-viewpoint 3D multi-view video for stereoscopic displays Do, Q.L.; Zinger, S.; de With, P.H.N.

Conversion of free-viewpoint 3D multi-view video for stereoscopic displays Do, Q.L.; Zinger, S.; de With, P.H.N. Conversion of free-viewpoint 3D multi-view video for stereoscopic displays Do, Q.L.; Zinger, S.; de With, P.H.N. Published in: Proceedings of the 2010 IEEE International Conference on Multimedia and Expo

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

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

Visualizing traceability in model transformation compositions van Amstel, M.F.; Serebrenik, A.; van den Brand, M.G.J.

Visualizing traceability in model transformation compositions van Amstel, M.F.; Serebrenik, A.; van den Brand, M.G.J. Visualizing traceability in model transformation compositions van Amstel, M.F.; Serebrenik, A.; van den Brand, M.G.J. Published: 01/01/2011 Document Version Publisher s PDF, also known as Version of Record

More information

How to deposit your accepted paper in ORA through Symplectic

How to deposit your accepted paper in ORA through Symplectic How to deposit your accepted paper in ORA through Symplectic Act on Acceptance: when you ve had a journal article or conference paper accepted for publication, deposit the accepted manuscript 1 into ORA

More information

Analysis of IP-based Real-Time In-Car Networks with Network Calculus Revsbech, Kasper; Nielsen, Jimmy Jessen; Harritsø, Kevin; Steffen, Rainer

Analysis of IP-based Real-Time In-Car Networks with Network Calculus Revsbech, Kasper; Nielsen, Jimmy Jessen; Harritsø, Kevin; Steffen, Rainer Aalborg Universitet Analysis of IP-based Real-Time In-Car Networks with Network Calculus Revsbech, Kasper; Nielsen, Jimmy Jessen; Harritsø, Kevin; Steffen, Rainer Publication date: 2009 Document Version

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

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

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

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

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

How to deposit your accepted paper in ORA through Symplectic

How to deposit your accepted paper in ORA through Symplectic How to deposit your accepted paper in ORA through Symplectic Act on Acceptance: when you ve had a journal article or conference paper accepted for publication, deposit the accepted manuscript 1 into ORA

More information

Tilburg University. Authoritative re-ranking of search results Bogers, A.M.; van den Bosch, A. Published in: Advances in Information Retrieval

Tilburg University. Authoritative re-ranking of search results Bogers, A.M.; van den Bosch, A. Published in: Advances in Information Retrieval Tilburg University Authoritative re-ranking of search results Bogers, A.M.; van den Bosch, A. Published in: Advances in Information Retrieval Publication date: 2006 Link to publication Citation for published

More information

Efficient Resource Allocation on a Dynamic Simultaneous Multithreaded Architecture Ortiz-Arroyo, Daniel

Efficient Resource Allocation on a Dynamic Simultaneous Multithreaded Architecture Ortiz-Arroyo, Daniel Aalborg Universitet Efficient Resource Allocation on a Dynamic Simultaneous Multithreaded Architecture Ortiz-Arroyo, Daniel Publication date: 2006 Document Version Early version, also known as pre-print

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

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

Protection coordination: Determination of break point set

Protection coordination: Determination of break point set Protection coordination: Determination of break point set Madani, S.M.; Rijanto, H. Published in: IEE Proceedings - Generation, Transmission and Distribution DOI: 10.1049/ip-gtd:19982365 Published: 01/01/1998

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

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

Smart Grid Communication Comparison Distributed Control Middleware and Serialization Comparison for the Internet of Things 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

More information

Published in: Proceedings of Conference on Architectural Research and Information Technology, 2001, Aarhus School of Architecture

Published in: Proceedings of Conference on Architectural Research and Information Technology, 2001, Aarhus School of Architecture Aalborg Universitet 2-D Directional Topology Optimization Fynbo, Jens; Rasmussen, John; Olhoff, Niels Published in: Proceedings of Conference on Architectural Research and Information Technology, 2001,

More information

Edinburgh Research Explorer

Edinburgh Research Explorer Edinburgh Research Explorer Hippo: A System for Computing Consistent Answers to a Class of SQL Queries Citation for published version: Chomicki, J, Marcinkowski, J & Staworko, S 2004, Hippo: A System for

More information

CrossRef tools for small publishers

CrossRef tools for small publishers pissn 2288-8063 eissn 2288-7474 Sci Ed 2015;2(2):79-85 http://dx.doi.org/10.6087/kcse.48 Training Material CrossRef tools for small publishers Rachael Lammey CrossRef, Oxford, United Kingdom Abstract CrossRef

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

VEHIL - HIL testing of advanced driver assistance systems Ploeg, J.

VEHIL - HIL testing of advanced driver assistance systems Ploeg, J. VEHIL - HIL testing of advanced driver assistance systems Ploeg, J. Published in: Proceedings of the Tagung "Hardware-in-the-Loop Simulation für Mechatronik-Systeme im Kfz", 18-19 Oktober 2005, Essen Published:

More information

A Replicated Study on Duplicate Detection: Using Apache Lucene to Search Among Android Defects

A Replicated Study on Duplicate Detection: Using Apache Lucene to Search Among Android Defects A Replicated Study on Duplicate Detection: Using Apache Lucene to Search Among Android Defects Borg, Markus; Runeson, Per; Johansson, Jens; Mäntylä, Mika Published in: [Host publication title missing]

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

Published in: Proceedings of the 18th Annual Symposium of the IEEE Photonics Benelux Chapter, November 2013, Technische Universiteit Eindhoven

Published in: Proceedings of the 18th Annual Symposium of the IEEE Photonics Benelux Chapter, November 2013, Technische Universiteit Eindhoven Fabrication and characterization of a wet-etched InPbased vertical coupling mirror Lemos Alvares Dos Santos, R.M.; D'Agostino, D.; Soares, F.M.; Rabbani Haghighi, H.; Smit, M.K.; Leijtens, X.J.M. Published

More information

Find, Evaluate and Cite Articles for Research Using EBSCO multi-search

Find, Evaluate and Cite Articles for Research Using EBSCO multi-search TOURO UNIVERSITY WORLDWIDE Find, Evaluate and Cite Articles for Research Using EBSCO multi-search Objectives Learn how to search for scholarly information using the EBSCO multi-search database portal Understand

More information

How to deposit your accepted paper in ORA through Symplectic

How to deposit your accepted paper in ORA through Symplectic How to deposit your accepted paper in ORA through Symplectic Act on Acceptance: when you ve had a journal article or conference paper accepted for publication, deposit the accepted manuscript 1 into ORA

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

Ecma International Policy on Submission, Inclusion and Licensing of Software

Ecma International Policy on Submission, Inclusion and Licensing of Software Ecma International Policy on Submission, Inclusion and Licensing of Software Experimental TC39 Policy This Ecma International Policy on Submission, Inclusion and Licensing of Software ( Policy ) is being

More information

Archive Legislation: archiving in the United Kingdom. The key laws that affect your business

Archive Legislation:  archiving in the United Kingdom. The key laws that affect your business Archive Legislation: Email archiving in the United Kingdom The key laws that affect your business Contents Laws regulating archiving, who they apply to and the penalties 3 Who is affected? 3 All private

More information

One-to-one point set matchings for grid map layout

One-to-one point set matchings for grid map layout One-to-one point set matchings for grid map layout Citation for published version (APA): Eppstein, D., van Kreveld, M. J., Speckmann, B., & Staals, F. (2012). One-to-one point set matchings for grid map

More information