Towards the Automatic Alignment of CIM and SCL Ontologies

Size: px
Start display at page:

Download "Towards the Automatic Alignment of CIM and SCL Ontologies"

Transcription

1 Standardization, Interoperability and Coexistence & Regulation (IEEE SmartGridComm) Towards the Automatic Alignment of CIM and SCL Ontologies R. Santodomingo, J.A. Rodríguez-Mondéjar, M.A. Sanz-Bobi Institute for Research in Technology (IIT) Comillas Pontifical University, ICAI School of Engineering Madrid, Spain Abstract During the planning and configuration of future energy smart grids translations of configuration files between CIM and IEC standards are going to be required. In order to carry out such translations it is necessary to align the CIM and SCL ontologies, which define the semantics of the configuration files. This work presents a methodology to automatically obtain the alignments between such ontologies. The methodology is based on the interaction between two existing tools: CIMMappingBench and ESODAT. This interaction requires the participation of the Domain Expert, which is a software tool developed in this work. The Domain Expert is able to employ specific knowledge about the electric system domain in order to find new alignments. The tests carried out showed the ability of the methodology to find most of the alignments required to translate a configuration file representing a simple facility. Keywords-energy management; substation automation; IEC standards; harmonization I. INTRODUCTION The Common Information Model (CIM) is standardized by standards series IEC and and is recommended as one of the core standards for the future energy grid [1]. The CIM is mainly used for the following use cases: exchanging custom messages using CIM semantics and syntax based on XML 2 serializations; exchanging instance data of the distribution and transmission grid topology, serialized using the Resource Description Framework (RDF) 3 standard; and standardizing interfaces between systems and interface descriptions. The standard series IEC are also a recommended in the context of smart grids [1]. The overall focus of the standard family lies on substation automation and the corresponding communication (substation inter-device communication). Two different data models can be found in the IEC 61850: the LN model [2], which defines the semantics of the messages to be exchanged between the devices, and the SCL (Substation Configuration Language) model [3], which defines the concepts to be employed in the XML files during the configuration of the automation system. Many approaches, such as [4], argue for a harmonization of these standards because there are many cases in which an 1 International Electrotechnical Commission S. Rohjans, M. Uslar OFFIS Institute for Information Technology R&D Division Energy Oldenburg, Germany {Rohjans, Uslar}@offis.de interaction between remote management applications (that use the CIM) and local automation devices and tools (using IEC 61850) is required [5]. During the planning and configuration of the electric networks such interactions involve the translation of configuration files (CIM/XML [6] and SCL [4]) from one standard to the other. In order to carry out these translations it is necessary to obtain the semantic correspondences between the entities (classes, properties, attributes) defined in CIM and the corresponding entities defined in SCL, i.e. it is necessary to align the CIM and the SCL ontologies. Given the extension and complexity of the ontologies and the possible modifications in their future versions, in this contribution we introduce a holistic approach for the automatic alignment of CIM and SCL ontologies. We combine and extend two existing approaches to gain improved results. The first part of the combination is an extended version of the CIMMappingBench which was developed within the context of the COLIN [7] (CIM Ontology alignment methodology) framework and is able to semi-automatically generate ontology alignments expressed in OWL (Web Ontology Language) 4. The second part of the approach involves the data translator ESODAT (Electric System Ontologies Data Translator) [8]. Combining these parts leads to an improvement in the alignment generation and processing in order to automate the translation of configuration files between CIM and IEC without modifying the original standards. Such improvement in the alignment generation is achieved by employing specific knowledge about the electric system domain. This specific knowledge is automatically processed by the Domain Expert, which is a software tool developed in this work. In general, the automatic alignment of ontologies generated from standards will facilitate both: the interaction between systems based on such standards and the detection of the existing heterogeneities between their data models. Moreover, the methodology proposed in this work could also be employed to align different versions of the same standard, facilitating its version management. This paper is organized as follows. Section II presents the ontologies to be aligned (CIM and SCL) and the existing tools employed in this work to generate the alignments: the CIMMappingBench and ESODAT. Section III gives an /11/$ IEEE 422

2 overview of the process defined in this work to automatically find the alignments between the ontologies. Such process is based on the interaction of CIMMappingBench and ESODAT. This interaction requires the participation of the Domain Expert tool in order to propose new alignments employing specific knowledge about the electric system domain. Sections IV to VII describe the functionality of the Domain Expert. Section VIII shows the results obtained in the tests carried out. Finally, Section IX includes the conclusions and future works. II. FUNDAMENTALS A. CIM & SCL Ontologies One of the core components of the CIM is an extensive and abstract data model which represents an ontology for the energy domain. The model is maintained as Unified Modelling Language (UML)-model by different model managers (TC57 WG13 and WG14) and its development is supported by the CIM users group (CIMug) 5. Version 13 of the data model consists of 45 packages including about 900 classes with more than 2650 attributes and being connected by about 870 associations [9]. Thus, CIM enables modeling almost all desired matters within the energy domain for communications of Energy Management Systems (EMS) and Distribution Management Systems (DMS). Originally, the focus of IEC (developed by TC57 WG10 6 ) was on substation automation and protection equipment and thus, applied in a different area as CIM focusing on EMS and DMS communications. In the context of this contribution, especially part 6 of the standard series is of high importance. It defines the SCL [4] which enables a standardized configuration to completely describe electric facilities and automation systems by configuration files. B. CIMMappingBench & ESODAT COLIN tries to overcome the different dimensions of heterogeneity in terms of harmonizing smart grid standards by establishing an ontology-based integration methodology [7]. One of the most striking harmonization needs is between CIM and IEC 61850; at this point the CIMMappingBench is applied [11]. The CIMMappingBench is developed as a stand-alone tool and is able to import data models in XMI (XML Metadata Interchange) and XML formats. The imported data models can be exported as OWL- files or results from quantitative analysis can be saved in CSV (Comma Separated Values) format. Beside the possibility to browse through the models using a tree-structured GUI (Graphical User Interface), also an interface is provided to be implemented by different matchers. For the case of mapping CIM and IEC data models a specialized matcher was implemented to meet the requirements of the two data models. In this contribution the CIMMappingBench generated the initial alignments between CIM and SCL. The matching process in the CIMMappingBench comprises several steps. In the first step, the strings of the names and descriptions of the CIM and SCL classes and attributes have to be prepared by employing: stemming algorithms to reduce the Technical Committee 57 Working Group 10 names and descriptions to their stem or root form, filters to avoid redundant words, and information from electropedia 7 to identify words with similar meanings. In the second step, CIM and SCL entities (classes and properties) are compared by using string-based methods, such as Jaro-Winkler 8 and Levenshtein 9, and structural analysis, which is able to detect two equivalent classes having different names and descriptions but similar attributes. Finally, once the similarity matrix M (Fig. 1) is obtained relating the entities of both ontologies, the alignments are exported in an OWL-file. ESODAT [8] is a data translator that is able to process the alignments expressed in OWL and SWRL 10 (Semantic Web Rule Language) to translate configuration files from CIM/XML to SCL and vice versa. ESODAT is based on Jena and OWL API, which both are open-source frameworks for building semantic web applications. III. CIMMAPPINGBENCH ESODAT INTERACTION Interaction of CIMMappingBench and ESODAT makes it possible to find the alignments that establish the semantic correspondences between CIM and SCL entities for the translation of configuration files by employing specific knowledge about the electric system domain. As shown in Fig. 1, such interaction is an iterative process that starts with the alignments Aº obtained with the CIMMappingBench. The alignments are imported by ESODAT to translate an instance configuration file (cim/xml) from one standard to the other. This instance file has to follow the definitions included in the specific knowledge file of the corresponding standard. At this point, the Domain Expert evaluates the output of the translation (cim/xmlº) and proposes new alignments A in order to improve the translation in the following iteration. This iterative process stops when the Domain Expert detects that the translation has not improved from the previous iteration. Fig. 1 shows the process to find the alignments for the translation from CIM to SCL. To find the alignments from SCL to CIM the process has to be repeated with an instance file scl. Fig. 1. CIMMappingBench ESODAT interaction staffwww.dcs.shef.ac.uk/people/s.chapman/stringmetrics.html#jaro

3 In order to evaluate the output of the translation and propose new alignments, the Domain Expert has to create its knowledge base from files defining specific knowledge about how to represent a type of facility (radial substation, breaker and a half substation, etc.) in both standards. Once the Domain Expert has created its knowledge base, it is able to evaluate the output of the translation by comparing it with the correct representation of an installation in the corresponding standard. Finally, from this comparison, the Domain Expert follows a set of generic rules to propose new alignments that improve the translation. Following sections describe in detail the functionality of the Domain Expert. In particular, it will be explained how in a specific iteration the Domain Expert is able to evaluate the output of a CIM/XML to SCL translation and to propose new alignments. The process for a translation in the opposite direction, i.e. from SCL to CIM/XML, is analogous. IV. KNOWLEDGE BASE ACQUISITION The specific knowledge files that describe how to represent a type of facility in CIM/XML and SCL employ OWL and SWRL languages. From each specific knowledge file the Domain Expert creates a semantic network [11] in which each node represents a type of element that have to appear in the output of the translation (Fig. 2). However, in the definition of a type of facility there are elements that may or may not appear. For example, in some facilities of a specific type there may be a current transformer connected to one point of the facility, and in other ones this element may not appear. In such cases the node is declared as optional in the semantic network. Each node n in the semantic network has the following elements: <c, â, âv, âref>. Such elements represent: c, the name of the class; â, the attributes that are required in the node; âv, the attributes required in the node and that have to take a specific value, for example scl:type = CBR in a node which represents a circuit breaker in the SCL ontology; âref, the attributes that establish a relationship with other object by reference, for example, scl:pathname and scl:connectivitynode establish the relationship by reference between a terminal and a connectivity node in the SCL ontology. Each node will be associated with the required nodes by the relationships r, such as, for example, the scl:terminal property in Fig. 2. The semantic networks also include the relationships by reference. V. STRUCTURE ASSOCIATION In order to evaluate the translation carried out in a specific iteration, the Domain Expert compares the instances obtained in the output of such translation with the nodes defined in the corresponding semantic network. For example, in a translation from CIM/XML to SCL, the Domain Expert compares the output of the translation with the semantic network that contains the information about how to represent the specific type of facility in SCL. This semantic network is called So, from output or target semantic network, and the other one is called Si, from input or source semantic network. To perform the comparison the Domain Expert makes a structure association between the output of the translation and the semantic network. Such structure association is based on similarity functions σ(i.n) that will give a unitary measure of the similarity between the instance i and the node n attending to different characteristics. A. Class similarity (σc) The first similarity function that is calculated by the Domain Expert is the σc(i.n), that indicates if the instance i appears in the output of the translation with the same class that the node n, i.e. c n, in the semantic network. Let s suppose that E1Q1QA1T1 is an instance included in a CIM/XML file (cim/xml) that belongs to the cim:terminal class. If the alignment establishing that cim:terminal is equivalent to scl:tterminal is processed by the data translator, in the output of the translation such instance will appear belonging to the scl:tterminal class. Thus, taking into account the nodes described in Fig. 2, the similarity function σc(e1q1qa1t1, SCLTerminal1) will be equal to 1 and, for instance, σc(e1q1qa1t1, SCLBreaker1) will be equal to 0. This process has to be done for all the instances in the output of the translation and all the nodes in the corresponding semantic network. The result is a similarity matrix Mc that includes the values of the similarities σc(i,n) for all the instances i in the configuration file and all the nodes n in the semantic network. B. Property similarity (σp) The second similarity function that is calculated is the σp(i.n), that indicates the similarity between the properties and attributes of the instance i (Pi) and the properties and attributes of the node n (Pn) (1). Let s suppose that the instance E1Q1QA1 appears in the output of a CIM/XML to SCL translation having the attribute scl:name. Again, following the nodes described in Fig. 2, the similarity functions σp(e1q1qa1, SCLBreaker1) will be equal to 1/3 and σp(e1q1qa1, SCLTerminal1) will be equal to 1/6. The similarity matrix Mp includes all the values σp(i.n) for all the instances i and all the nodes n. σp(i, n) Pi Pn = (1) Pi Pn Fig. 2. Fragment of a Semantic Network So C. Local similarity (σl) The local similarity σl(i.n) aggregates the values of σc(i.n) and σp(i.n) (2). σl(i, n) = wc σc(i, n) + wp σp(i, n) (2) 424

4 In (2), wc and wp are the weights for σc(i.n) and σp(i.n), respectively. In this study the value given to wc is 0 7 and to wp is 0 3. This is because we considered that the information given by σc(i.n) is more valuable to compare i to n than the information given by σp(i.n). However, in future versions the Domain Expert will be able to automatically change the weights in order to improve the alignment generation in the next iteration. D. Global similarity (σg) The local similarities σl(i.n) only take into account the information obtained from the data translation. The global similarities σg(i,n) add the knowledge about the structure in the input file (cim/xml), i.e. the knowledge about which instances are associated in the input file. This is based on the hypothesis that if two instances are related somehow in the input or source ontology, they will be probably related also in the output or target ontology. The computation of the global similarities has to be iterative because circular dependencies are expected, i.e. the fact that i is associated to n makes it more probable that i is associated to n, and vice versa. A computation based on the Similarity Flooding [12] is used in this study and will be explained here. Following the Similarity Flooding, the first step is to create a graph that will be called G. In this graph the nodes are pairs <i,n> and each node is related with another one <i,n > if a relationship exists between i and i in the input file cim/xml and if a relationship exists between n and n in So. In both cases, the relationships between instances by reference, e.g. between a scl:tterminal and a scl:tconnectivitynode, will be taken into account. For example, let s suppose that the instance SE12 is related to E1 in the input by the cim:voltagelevel.substation object property, and in the semantic network So, the node SCLSubstation is related to the node SCLVoltageLevel2 with the scl:voltgalevel object property. In that way, the nodes <SE12, SCLSubstation> and <E1, SCLVoltageLevel1> are going to be associated in the graph G. Each association between the nodes <i,n> of G has to be assigned to a weight w, which is going to be equal to 1/m, being m, the number of associations that has the source node. Once the graph G is created, the iterative process starts. Initially the global similarity σg(i,n) between each instance i and each node n is equal to the corresponding local similarity σl(i,n). The global similarity in the following steps is calculated with the equation (3). it+ 1 σg (i,n) = σl(i,n) + σg (i',n') w( < i,n >, < i',n' > ) (3) < i',n' > G Finally, the similarities have to be normalized with the highest σg(i,n) value. Employing the normalized similarities, the algorithm stops if the expression in (4) is true. In (4) ε is the threshold, which in this work was set to 0 1. i cim/xml,n So; σgµ (i, n) σgµ (i, n) < ε it it+ 1 E. Associations between instances and nodes Once the normalized global similarities σg μ(i,n) are calculated, the instances in cim/xml can be associated to their most probable nodes in So, and in the same way, the nodes in it (4) So have to be associated to their most probable instances in cim/xml. This association may not be bijective because of the coverage mismatches between both ontologies, i.e. there may be some instances that are not translated to the target ontology and there may be some nodes in So that are not represented in the original ontology instance file cim/xml. Taking this into account, the associations between instances i in the input file cim/xml and nodes n in the semantic network So will be obtained with the following rules: a) for each instance i, take the node n with the maximum global similarity σg μ(i,n); b) for each node n, take the instance i with the maximum global similarity σg μ(i,n); c) if i has the maximum σg μ(i,n) for n and n has the maximum σg μ(i,n) for i, then i is associated the node n; and d) if after this, there are two instances associated to the same node, remove such associations. VI. ALIGNMENT GENERATION RULES The previous section explains how the Domain Expert associates the instances in the input file cim/xml to the nodes in the semantic network So. This process is also carried out by the Domain Expert to associate the instances to the nodes in Si. Hereinafter, the nodes in So will be noted as no and the nodes in Si as ni. Once the instances i are associated to the nodes no in So, and the nodes ni in Si, the next step is to propose the alignments that make such associations more probable. For that purpose, the Domain Expert employs a set of generic rules that detect and classify the differences between the instances in the output of the translation and the corresponding nodes no in So. For each type of difference or mistake detected in the output of the translation the rules propose a new alignment. For example, the first rule employed by the Domain Expert to propose new alignments is the following. When the instance i does not belong in the output of the translation to the same class that the class of the corresponding node no (c no ) the Domain Expert proposes the alignment expressed in (5). In (5): c ni is the class of ni, â vi are the attributes of ni that have to take a specific value, c no is the class of no and â vo are the attributes of no that have to take a specific value, x, [c (x) âv ] [c (x) âv ] (5) ni ni Let s suppose that the instance E1Q1QA1 is associated in So to SCLBreaker1 (Fig. 2) and in Si to CIMBreaker1, which is a node that belongs to cim:breaker class and that does not have any a vi attribute. Let s also suppose that in the output of the translation the instance appears belonging to a different class that the class of the corresponding no, i.e. scl:tconductingequipment. In such case, the proposed alignment would be the one expressed in (6). x, [cim : Breaker(x)] [scl : tconductin gequipment(x) no scl VII. ITERATIVE PROCESS no : type(x, CBR)] Sections V and VI described the steps carried out by the Domain Expert in a single iteration to detect the mistakes that may appear during the translation in such iteration and propose new alignments to solve these mistakes in the following iteration. This section explains when the iterative process stops, this means when the Domain Expert decides that no more additional alignments can be proposed in order to improve the (6) 425

5 translations. The function whose value indicates that the iterative process has reached to its end has to indicate the wellness of the translations carried out in the iterative process. The measure of such wellness is based on the global similarities σg μ(i,no) calculated in each iteration to associate the instances of the input file cim/xml to the corresponding nodes in the semantic network So. These similarity functions measure the similarity between each i instance and each node no. In order to calculate the similarity of the complete structure association between the instances and the nodes, and therefore, measure the wellness of the translation in the iteration, it is necessary to define a total similarity function σ TOT, whose value will be obtained from (7). σ = σg (i, no) σr (7) TOT I R In (7): I is the set of all the instances i included in the input file, R is the set of all the relationships ro between the nodes no in the semantic network So; and σr i is the similarity function between the relationships ro of the node no in So and the relationships of the instances i in the input file cim/xml. The value of σr i is equal to 1 if the relationship ro associating no to other node no in the semantic network So appears also in the output of the translation associating i to i, being i the corresponding instance to no. If ro does not appear in the output, but the instance i is associated to i in the input file by a relationship ri the value of σr i is equal to 0 5. In the rest of the cases the value of σr i is 0. For example, let`s suppose that the instance SE12 is associated in So to the node SCLSubstation. Such node is associated in So to the node SCLVoltageLevel1 with the relationship ro scl:voltagelevel. The instance associated to SCLVoltageLevel1 is E1. In the output of the translation SE12 is not associated to E1, but in the input file the relationship ri cim:voltagelevel.substation associates these two instances. In this case, the value of σr i would be equal to 0 5. The value of σ TOT is not unitary, i.e. could be greater than 1. The unitary value σ TOTμ could be obtained by dividing σ TOT by the maximum σ TOT that can be calculated in the semantic network So, i.e. the total similarity that would be obtained in So if all the similarities σg μ(i,no) and σr i were equal to 1. The iterative process stops when σ TOTμ does not change more than a threshold ε (in our case set to 0 01) in comparison with the value in the previous iteration. µ VIII. TESTS A. Alignments Aº The initial alignments Aº are the starting point for the iterative process between ESODAT and the Domain Expert. Such alignments have to be very accurate, i.e. importing less initial alignments but with the certainty that they are true it is better for the convergence of the iterative process than importing more initial alignments but with some false positives among them. For that reason, the CIMMappingBench used very restrictive thresholds (0 9) in the generation of the initial alignments Aº. The results obtained in the tests are shown in Table I. i TABLE I. INITIAL ALIGNMENTS Aº CIM ontology cim:substation(x) cim:voltagelevel(x) cim:bay(x) cim:conductingequipment(x) cim:terminal(x) cim:connectivitynode(x) SCL ontology scl:tsubstation(x) scl:tvoltagelevel(x) scl:tbay(x) scl:tconductingequipment(x) scl:tterminal(x) scl:tconnectivitynode(x) cim:identifiedobject.name(x, y) scl:name(x, y) B. Specific Knowledge & Instance Configuration File The specific knowledge that was given to the Domain Expert in the tests as OWL and SWRL files involved the representation of a very simple type of electric facility in both standards. Such type of facility is a substation that consists of two voltage levels. The first one contains a breaker and a connectivity node, and the second one just contains a connectivity node. Obviously, this type of facility would not have much sense in the real world, but it was very useful for the evaluation of the Domain Expert functionality. The last input required to start the iterative process is the instance configuration file representing a facility that belongs to the type of facility described in the specific knowledge files imported by the Domain Expert. In our case, the instance configuration file employed in the tests was a CIM/XML file representing a substation with the characteristics described above (Fig. 3). C. Knowledge Base Acquisition (Si and So) The Domain Expert acquired its knowledge base from the specific knowledge files that describe how to represent the type of facility shown in Fig. 3 in both standards. Such knowledge base consisted of two semantic networks: Si describing how to represent the type of facility in CIM and So describing how to represent the type of facility in SCL (Fig. 2). D. Results obtained in the first iteration This sub-section shows the results obtained during the first iteration. In this iteration ESODAT processed the alignments Aº included in Table I in order to translate the CIM/XML file into SCL. The comparison between the instances in the output of the translation and the nodes defined in So resulted in the global similarity matrix Mg shown in Table II, in which the similarities in bold indicate that an association was established between the instance represented in the corresponding file and the node represented in the corresponding column. From these associations and following the set of rules introduced in Section VI, four new alignments were proposed. One of them was the alignment expressed in (6). E. Results obtained in the last iteration In the third iteration the iterative process stopped with the σ TOTμ equal to The resulting additional alignments proposed by the Domain Expert are shown in Table III. 426

6 TABLE III. PROPOSED ALIGNMENTS Fig. 3. Type of facility defined in the specific knowledge files and names of the instances (in brackets) included in the CIM/XML file TABLE II. GLOBAL SIMILARITY MATRIX IN FIRST ITERATION SCLSubstation SCLVoltageLevel1 SCLVoltageLevel2 SCLBay1 SE12 1,00 0,04 0,04 0,32 0,32 0,03 0,04 0,03 0,09 0,10 E1 0,04 0,80 0,83 0,04 0,03 0,14 0,19 0,18 0,02 0,02 D1 0,04 0,79 0,88 0,04 0,04 0,17 0,23 0,21 0,02 0,02 E1Q1 0,33 0,05 0,05 0,93 0,87 0,04 0,04 0,04 0,26 0,27 D1Q1 0,31 0,04 0,04 0,86 0,83 0,03 0,04 0,03 0,20 0,21 E1Q1L1 0,04 0,15 0,18 0,04 0,03 0,74 0,79 0,35 0,02 0,02 E1Q1QA1 0,05 0,19 0,22 0,06 0,04 0,36 0,40 0,59 0,03 0,03 E1Q1QA1T1 0,10 0,04 0,04 0,26 0,21 0,03 0,03 0,03 0,73 0,74 E1Q1QA1T2 0,12 0,04 0,04 0,28 0,22 0,07 0,03 0,03 0,74 0,75 D1Q1L1 0,04 0,19 0,23 0,05 0,04 0,77 0,82 0,39 0,03 0,02 IX. SCLBay2 SCLConnectivityNode1 SCLConnectivitNode2 SCLBreaker1 CONCLUSION AND FUTURE WORK The translation of configuration files between CIM and IEC standards is necessary to achieve the interoperability in the scope of future smart grids. In order to carry out such translations the alignment of CIM and SCL ontologies is required. Taking into account the extension and complexity of the ontologies and the possible extensions and modifications in future versions of the standards, it is very useful to automate the alignment process as much as possible. This work presents a new methodology to automatically align CIM and SCL ontologies by combining two existing approaches: CIMMappingBench and ESODAT. This methodology employs: string-distance-based, lexicon-based, structure-based and specific-domain-knwoledge-based methods to automatically find the semantic correspondences between the ontologies. In order to use the specific domain knowledge to obtain new alignments a new software tool, called Domain Expert, was developed in this work. The tests carried out showed the ability of the methodology to obtain most of the required alignments (including quite complex ones) to translate a configuration file representing a simple facility. SCLTerminal1 SCLTermianl2 CIM ontology SCL ontology cim:bay(x) cim:bay.voltagelevel(x,y) scl:bay(y,x) cim:breaker(x) scl:tconductingequipment(x) scl:type(x, CBR) cim:breaker(x) cim:equipment.equipmentcontainer(x,y) scl:conductingequipment(y,x) cim:connectivitynode(x) cim:connectivitynode.connectivitynode- scl:connectivitynode(y,x) Container(x,y) cim:terminal(x) cim:terminal.conductingequipment(x,y) scl:terminal(y,x) cim:voltagelevel(x) cim:voltagelevel.substation(x,y) scl:voltagelevel(y,x) In the current version the specific knowledge files imported by the Domain Expert were created manually, but in the future they will be obtained by automatic learning methods or with the help of a tool that guides a non-expert in their elaboration. Moreover, the Domain Expert will be able to automatically calculate the thresholds and weights employed in the process in order to improve the alignment generation. REFERENCES [1] NIST FrameWork and RoadMap for Smart Grid Interoperability Standards, Release 1.0. NIST Special Publication January [2] Draft IEC communication networks and systems in substations - part 7-4: Basic communication structure - compatible logical node classes and data classes, IEC TC57 Standard, [3] IEC communication neworks and systems in substations - part 6: Configuration description language for communication in electrical substations related to IEDs, IEC TC57 Standard, [4] C. Frei, O. Preiss and T. Kostic, "Method and System for bi-directional data conversion between IEC and IEC 61970," International Patent Application PCT/CH2004/000510, [5] Harmonizing the international electrotechnical comission common information model (CIM) and standards via a unified model: Key to achieve smart grid interoperability objectives. EPRI, Palo Alto, CA: [6] Draft IEC : Energy management system application programming interface (EMS-API) - part 552: CIM XML exchange format, IEC TC57Standard, January [7] Uslar, Mathias, F. Gruening, and Sebastian Rohjans A Use Case for Ontology Evolution and Interoperability: The IEC Utility Standards Reference Framework Pp in Cases on Semantic Interoperability for Information Systems Integration: Practices and Applications, edited by Y. Kalfoglou. IGI Global. [8] R. Santodomingo, J. A. Rodríguez-Mondéjar and M. A. Sanz-Bobi, "Ontology matching approach to the harmonization of CIM and IEC standards," in IEEE SmartGridComm [9] M. Uslar, S. Rohjans, M. Specht, and J. Gonzalez. What is the CIM lacking? in IEEE SmartGridComm [10] Uslar, Mathias Ontologiebasierte Integration heterogener Standards in der Energiewirtschaft. Edewecht: Oldenburg Computer Science Series XIII. [11] D. Popovic and V.P. Bhatkar, Methods and Tools for Applied Artificial Intelligence, Marcel Dekker, Inc., New York, [12] S. Melnik, H. Garcia-Molina, and E. Rahm. Similarity flooding: a versatile graph matching algorithm, in ICDE International Conf

Technical Requirements for DER Integration Architectures

Technical Requirements for DER Integration Architectures Available online at www.sciencedirect.com Energy Procedia 20 (2012 ) 281 290 Technoport RERC Research 2012 Technical Requirements for DER Integration Architectures Mathias Uslar a*, Sebastian Rohjans a,

More information

Lecture 16 Common Information Model

Lecture 16 Common Information Model Lecture 16 Common Information Model Course Map 1 Contents Information Modelling in Power Industry - Information Exchange Need - Information modeling Common Information Model-CIM - Background - CIM based

More information

DUE to previous experiences as well as several national

DUE to previous experiences as well as several national 1 What is the CIM lacking? Mathias Uslar, Sebastian Rohjans, Michael Specht, José Manuel González Vázquez Abstract The IEC 61970/61968 Common Information Model is undoubtedly one of the core standards

More information

Developing Scalable Smart Grid Infrastructure to Enable Secure Transmission. System Control

Developing Scalable Smart Grid Infrastructure to Enable Secure Transmission. System Control Developing Scalable Smart Grid Infrastructure to Enable Secure Transmission System Control EP/K006487/1 UK PI: Prof Gareth Taylor (BU) China PI: Prof Yong-Hua Song (THU) Consortium UK Members: Consortium

More information

The Fundamental Concept of Unified Generalized Model and Data Representation for New Applications in the Future Grid

The Fundamental Concept of Unified Generalized Model and Data Representation for New Applications in the Future Grid 2012 45th Hawaii International Conference on System Sciences The Fundamental Concept of Unified Generalized Model and Data Representation for New Applications in the Future Grid Mladen Kezunovic Texas

More information

Semantic Modeling with the CIM. 28 February 2012 Terry Saxton

Semantic Modeling with the CIM. 28 February 2012 Terry Saxton Semantic Modeling with the CIM 28 February 2012 Terry Saxton 1 Presentation Contents NIST Smart Grid Roadmap and CIM CIM as a semantic model Genius and uniqueness of CIM standards Business drivers for

More information

Terry Saxton, Xtensible Solutions Herb Falk, SISCO Dave Becker, EPRI November 17, 2009

Terry Saxton, Xtensible Solutions Herb Falk, SISCO Dave Becker, EPRI November 17, 2009 EPRI CIM and 6850 Harmonization 2009 Project Report Terry Saxton, Xtensible Solutions Herb Falk, SISCO Dave Becker, EPRI November 7, 2009 Why Do We Care About Harmonization? Smart Grid initiative is all

More information

Agenda An Overview of Network Codes, CIM & CGMES

Agenda An Overview of Network Codes, CIM & CGMES Agenda An Overview of Network Codes, CIM & CGMES Elkraft 2017 2017-05-18 Lars-Ola Österlund Now Brolunda Consulting Retired from ABB Software Enterprise fall 2016 Worked with standards in IEC TC57 and

More information

Robust Topology Determination Based on Additional Substation Data from IEDs

Robust Topology Determination Based on Additional Substation Data from IEDs Robust Topology Determination Based on Additional Substation Data from IEDs M. Kezunovic 1, Fellow IEEE, T. Djokic, T. Kostic 2, Member IEEE Abstract This paper describes an approach for more robust power

More information

An Evolutive and Multilingual CIM Ontology Management System

An Evolutive and Multilingual CIM Ontology Management System Available online at www.sciencedirect.com Energy Procedia 12 (2011) 18 26 ICSGCE 2011: 27 30 September 2011, Chengdu, China An Evolutive and Multilingual CIM Ontology Management System Lan Wang *, Akira

More information

INTERNATIONAL ELECTROTECHNICAL COMMISSION. IEC TC57 WG15 Data and Communication Security Status & Roadmap. May, Frances Cleveland.

INTERNATIONAL ELECTROTECHNICAL COMMISSION. IEC TC57 WG15 Data and Communication Security Status & Roadmap. May, Frances Cleveland. INTERNATIONAL ELECTROTECHNICAL COMMISSION IEC TC57 WG15 Data and Communication Security Status & Roadmap May, 2013 Frances Cleveland Convenor WG15 Mission and Scope of WG15 on Cybersecurity Undertake the

More information

CIM Task Force Update: CIM Harmonization & CIM Certification Testing +++

CIM Task Force Update: CIM Harmonization & CIM Certification Testing +++ CIM Task Force Update: CIM-61850 Harmonization & CIM Certification Testing +++ CIM User s Group Meeting Nov 18, 2016 Margaret E. Goodrich Project Consultants, LLC margaret@j-mgoodrich.com +1-903-477-7176

More information

An Interdisciplinary Collaboration Platform for Smart Grid Research

An Interdisciplinary Collaboration Platform for Smart Grid Research An Interdisciplinary Collaboration Platform for Smart Grid Research Sebastian Lehnhoff Energy Informatics 2 Energy Informatics in Oldenburg General Conditions Challenges energy transition in Germany fluctuating

More information

Automation of Semantic Web based Digital Library using Unified Modeling Language Minal Bhise 1 1

Automation of Semantic Web based Digital Library using Unified Modeling Language Minal Bhise 1 1 Automation of Semantic Web based Digital Library using Unified Modeling Language Minal Bhise 1 1 Dhirubhai Ambani Institute for Information and Communication Technology, Gandhinagar, Gujarat, India Email:

More information

Towards Distribution Smart Grid in Mexico. Austin, Texas November 15 18, 2011

Towards Distribution Smart Grid in Mexico. Austin, Texas November 15 18, 2011 Towards Distribution Smart Grid in Mexico Austin, Texas November 15 18, 2011 Towards Distribution Smart Grid in Mexico Alfredo Espinosa Reza (aer@iie.org.mx) Instituto de Investigaciones Eléctricas Benjamín

More information

INTERNATIONAL STANDARD

INTERNATIONAL STANDARD INTERNATIONAL STANDARD IEC 61970-501 First edition 2006-03 Energy management system application program interface (EMS-API) Part 501: Common Information Model Resource Description Framework (CIM RDF) schema

More information

ISO/TS TECHNICAL SPECIFICATION

ISO/TS TECHNICAL SPECIFICATION TECHNICAL SPECIFICATION ISO/TS 13584-35 First edition 2010-07-15 Industrial automation systems and integration Parts library Part 35: Implementation resources: Spreadsheet interface for parts library Systèmes

More information

Application and Research of Integrated Information Exchange System Between Substation and Dispatch Center

Application and Research of Integrated Information Exchange System Between Substation and Dispatch Center International Conference on Energy, Power and Electrical Engineering (EPEE 2016) Application and Research of Integrated Information Exchange System Between Substation and Dispatch Center Ning Jiang1, Lin

More information

Towards Ontology Mapping: DL View or Graph View?

Towards Ontology Mapping: DL View or Graph View? Towards Ontology Mapping: DL View or Graph View? Yongjian Huang, Nigel Shadbolt Intelligence, Agents and Multimedia Group School of Electronics and Computer Science University of Southampton November 27,

More information

INTERNATIONAL STANDARD

INTERNATIONAL STANDARD INTERNATIONAL STANDARD IEC 61360-2 Edition 2.1 2004-02 Edition 2:2002 consolidated with amendment 1:2003 Standard data element types with associated classification scheme for electric components Part 2:

More information

ISO/IEC INTERNATIONAL STANDARD. Information technology Metamodel framework for interoperability (MFI) Part 1: Reference model

ISO/IEC INTERNATIONAL STANDARD. Information technology Metamodel framework for interoperability (MFI) Part 1: Reference model INTERNATIONAL STANDARD ISO/IEC 19763-1 First edition 2007-02-01 Information technology Metamodel framework for interoperability (MFI) Part 1: Reference model Technologies de l'information Cadre du métamodèle

More information

Justifying the Use of the CIM in the Utility Enterprise

Justifying the Use of the CIM in the Utility Enterprise Justifying the Use of the CIM in the Utility Enterprise IEEE Power System Conference and Exhibit Seattle, Washington March 18, 2009 Terry Saxton Vice President, Special Projects Xtensible Solutions 1 Presentation

More information

USE CASE 14 CONTROLLED ISLANDING

USE CASE 14 CONTROLLED ISLANDING I USE CASE 14 CONTROLLED ISLANDING Use Case Title Centralized application separates grid into islands to prevent blackout Use Case Summary Controlled islanding is a method that can significantly improve

More information

This document is a preview generated by EVS

This document is a preview generated by EVS INTERNATIONAL STANDARD IEC 62559-3 Edition 1.0 2017-12 colour inside Use case methodology Part 3: Definition of use case template artefacts into an XML serialized format IEC 62559-3:2017-12(en) THIS PUBLICATION

More information

Generalized Document Data Model for Integrating Autonomous Applications

Generalized Document Data Model for Integrating Autonomous Applications 6 th International Conference on Applied Informatics Eger, Hungary, January 27 31, 2004. Generalized Document Data Model for Integrating Autonomous Applications Zsolt Hernáth, Zoltán Vincellér Abstract

More information

Panel Session #1 Standards for Smart Grids

Panel Session #1 Standards for Smart Grids Panel Session #1 Standards for Smart Grids Your Panelists Lars Nordström, KTH, Sweden is associate professor in Power System Management at KTH The Royal Institute of Technology, Stockholm, Sweden, Since

More information

CIMERGY PROJECT FIRST RESULTS ON IEC STANDARDS EDF IMPLEMENTATION

CIMERGY PROJECT FIRST RESULTS ON IEC STANDARDS EDF IMPLEMENTATION CIMERGY PROJECT FIRST RESULTS ON IEC 61970-61968 STANDARDS EDF IMPLEMENTATION E. Lambert*, A. Maizener*, F. Wu*, J.L Sanson*, C. Bahloul*, P. Veyret* *EDF R&D Division 1, Abenur du Général de Gaulle 92141

More information

ICT standards for smart grids: IEC 61850, CIM and their implementation in the ERIGrid project

ICT standards for smart grids: IEC 61850, CIM and their implementation in the ERIGrid project ICT standards for smart grids: IEC 61850, CIM and their implementation in the ERIGrid project March 23, 2018 Daniele Pala, Ricerca sul Sistema Energetico - RSE S.p.A. Agenda ICT Interoperability in Smart

More information

IEC TC57 WG15 - Cybersecurity Status & Roadmap

IEC TC57 WG15 - Cybersecurity Status & Roadmap INTERNATIONAL ELECTROTECHNICAL COMMISSION IEC TC57 WG15 - Cybersecurity Status & Roadmap June, 2012 Frances Cleveland Convenor WG15 Mission and Scope of WG15 on Cybersecurity Undertake the development

More information

CIM and Harmonization

CIM and Harmonization CIM and 61850 Harmonization Herbert Falk Solutions Architect SISCO Common Information Model in Smart Grid, Distribution, Transmission Workshop September 9, 2010 The Holy Grail Asset Connectivity An audience

More information

This document is a preview generated by EVS

This document is a preview generated by EVS TECHNICAL REPORT IEC TR 62357-1 Edition 2.0 2016-11 colour inside Power systems management and associated information exchange Part 1: Reference architecture IEC TR 62357-1:2016-11(en) THIS PUBLICATION

More information

Chapter 2 State Estimation and Visualization

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

More information

ISO/IEC INTERNATIONAL STANDARD. Information technology Metadata registries (MDR) Part 3: Registry metamodel and basic attributes

ISO/IEC INTERNATIONAL STANDARD. Information technology Metadata registries (MDR) Part 3: Registry metamodel and basic attributes INTERNATIONAL STANDARD ISO/IEC 11179-3 Third edition 2013-02-15 Information technology Metadata registries (MDR) Part 3: Registry metamodel and basic attributes Technologies de l'information Registres

More information

Data Warehouse and Analysis Agents

Data Warehouse and Analysis Agents Data Warehouse and Analysis Agents M. Kezunovic, T. Popovic Abstract - The paper discusses automated substation data integration and analysis. Recorded data collected from various substation IEDs is stored

More information

An Infrastructure for MultiMedia Metadata Management

An Infrastructure for MultiMedia Metadata Management An Infrastructure for MultiMedia Metadata Management Patrizia Asirelli, Massimo Martinelli, Ovidio Salvetti Istituto di Scienza e Tecnologie dell Informazione, CNR, 56124 Pisa, Italy {Patrizia.Asirelli,

More information

Integrating IEC & IEEE 1815 (DNP3)

Integrating IEC & IEEE 1815 (DNP3) Integrating IEC 61850 & IEEE 1815 (DNP3) Andrew West Regional Technical Director, SUBNET Solutions, Inc. SUMMARY North America has a mature electric power grid. The majority of grid automation changes

More information

Similarity Flooding: A versatile Graph Matching Algorithm and its Application to Schema Matching

Similarity Flooding: A versatile Graph Matching Algorithm and its Application to Schema Matching Similarity Flooding: A versatile Graph Matching Algorithm and its Application to Schema Matching Sergey Melnik, Hector Garcia-Molina (Stanford University), and Erhard Rahm (University of Leipzig), ICDE

More information

Use Case Create NOMCR

Use Case Create NOMCR Use Case Create NOMCR COPS.P01ModelManageData_UseCase_CreateNOMCR_V0.9 Name: Create NOMCR for Incremental Model Update Summary: Acronyms: Create Data change file for all additions, deletions or modifications

More information

Welcome to the CIM University. CIM Users Group Ljubljana, Slovenia 11 June 2013 Terry Saxton

Welcome to the CIM University. CIM Users Group Ljubljana, Slovenia 11 June 2013 Terry Saxton Welcome to the CIM University CIM Users Group Ljubljana, Slovenia 11 June 2013 Terry Saxton 1 CIM Standards Overview and CIM s Role in the Utility Enterprise Part 1 2 Presentation Contents Background What

More information

An Improving for Ranking Ontologies Based on the Structure and Semantics

An Improving for Ranking Ontologies Based on the Structure and Semantics An Improving for Ranking Ontologies Based on the Structure and Semantics S.Anusuya, K.Muthukumaran K.S.R College of Engineering Abstract Ontology specifies the concepts of a domain and their semantic relationships.

More information

C I R E D 22 nd International Conference on Electricity Distribution Stockholm, June 2013

C I R E D 22 nd International Conference on Electricity Distribution Stockholm, June 2013 C I R E D 22 nd International Conference on Electricity Distribution Stockholm, 0-3 June 203 Paper 399 PROTECTION OPERATION ANALYSIS IN SMART GRIDS Alexander Apostolov OMICRON electronics - USA alex.apostolov@omicronusa.com

More information

The Model-Driven Semantic Web Emerging Standards & Technologies

The Model-Driven Semantic Web Emerging Standards & Technologies The Model-Driven Semantic Web Emerging Standards & Technologies Elisa Kendall Sandpiper Software March 24, 2005 1 Model Driven Architecture (MDA ) Insulates business applications from technology evolution,

More information

Hosting Capacity for Distributed Energy Resources on Distribution Feeders A Case Study

Hosting Capacity for Distributed Energy Resources on Distribution Feeders A Case Study CIGRE US National Committee 2017 Grid of the Future Symposium Hosting Capacity for Distributed Energy Resources on Distribution Feeders A Case Study Huijuan Li EPRI Cleveland, OH October 23, 2017 Hosting

More information

Bridging the Gap between Semantic Web and Networked Sensors: A Position Paper

Bridging the Gap between Semantic Web and Networked Sensors: A Position Paper Bridging the Gap between Semantic Web and Networked Sensors: A Position Paper Xiang Su and Jukka Riekki Intelligent Systems Group and Infotech Oulu, FIN-90014, University of Oulu, Finland {Xiang.Su,Jukka.Riekki}@ee.oulu.fi

More information

Time Synchronization and Standards for the Smart Grid

Time Synchronization and Standards for the Smart Grid Time Synchronization and Standards for the Smart Grid Tom Nelson National Institute of Standards and Technology 2011 NIST - ATIS - Telcordia Workshop on Synchronization in Telecommunication Systems (WSTS

More information

Smart Grid Architecture Committee (SGAC) Standard Review IEC Suite of Standards White Paper November 2011

Smart Grid Architecture Committee (SGAC) Standard Review IEC Suite of Standards White Paper November 2011 Smart Grid Architecture Committee (SGAC) Standard Review IEC 61850 Suite of Standards White Paper November 2011 Standard Name IEC 61850 Suite of standards Communication networks and systems for power utility

More information

AUTOMATED FAULT AND DISTURBANCE DATA ANALYSIS. Special Report for PS#2. Special Reporter: Mladen Kezunovic * U.S.A.

AUTOMATED FAULT AND DISTURBANCE DATA ANALYSIS. Special Report for PS#2. Special Reporter: Mladen Kezunovic * U.S.A. AUTOMATED FAULT AND DISTURBANCE DATA ANALYSIS Special Report for PS#2 Special Reporter: Mladen Kezunovic * U.S.A. This paper gives a set of questions stimulated by twenty one papers submitted by the authors

More information

Part 1: Content model

Part 1: Content model Provläsningsexemplar / Preview TECHNICAL SPECIFICATION ISO/TS 19163-1 First edition 2016-01-15 Geographic information Content components and encoding rules for imagery and gridded data Part 1: Content

More information

Category Theory in Ontology Research: Concrete Gain from an Abstract Approach

Category Theory in Ontology Research: Concrete Gain from an Abstract Approach Category Theory in Ontology Research: Concrete Gain from an Abstract Approach Markus Krötzsch Pascal Hitzler Marc Ehrig York Sure Institute AIFB, University of Karlsruhe, Germany; {mak,hitzler,ehrig,sure}@aifb.uni-karlsruhe.de

More information

Integrating Automation Design Information with XML and Web Services

Integrating Automation Design Information with XML and Web Services Integrating Automation Design Information with XML and Web Services Mika Viinikkala Tampere University of Technology, Institute of Automation and Control, P.O. Box 692, 33101 Tampere Tel. +358 3 3115 3586,

More information

PRIOR System: Results for OAEI 2006

PRIOR System: Results for OAEI 2006 PRIOR System: Results for OAEI 2006 Ming Mao, Yefei Peng University of Pittsburgh, Pittsburgh, PA, USA {mingmao,ypeng}@mail.sis.pitt.edu Abstract. This paper summarizes the results of PRIOR system, which

More information

Digital Protection Past, Present, and Future

Digital Protection Past, Present, and Future Digital Protection Past, Present, and Future Eric A. Udren Quanta Technology, LLC Pittsburgh, PA Presentation for CIGRÉ Grid of the Future Symposium Boston, MA October 22, 2013 eudren@quanta-technology.com

More information

Application and Research of Integrated Model Between Substation and Dispatch Center

Application and Research of Integrated Model Between Substation and Dispatch Center International Conference on Energy, Power and Electrical Engineering (EPEE 2016) Application and Research of Integrated Model Between Substation and Dispatch Center Ning Jiang1, Lin Li1, Ning Kang1, Guodong

More information

INTERNATIONAL STANDARD

INTERNATIONAL STANDARD IEC 61970-407 INTERNATIONAL STANDARD Edition 1.0 2007-08 Energy management system application program interface (EMS-API) Part 407: Time Series Data Access (TSDA) INTERNATIONAL ELECTROTECHNICAL COMMISSION

More information

New ETSI-CEN-CENELEC approach for rapid SG deployments. Jean-Pierre Mennella CIM User Group, Oslo 18 June, 2014

New ETSI-CEN-CENELEC approach for rapid SG deployments. Jean-Pierre Mennella CIM User Group, Oslo 18 June, 2014 New ETSI-CEN-CENELEC approach for rapid SG deployments Jean-Pierre Mennella CIM User Group, Oslo 18 June, 2014 Page 1 CEN/CENELEC/ETSI Joint Working Group on standards for Smart Grids CEN-CENELEC-ETSI

More information

The Specifications Exchange Service of an RM-ODP Framework

The Specifications Exchange Service of an RM-ODP Framework The Specifications Exchange Service of an RM-ODP Framework X. Blanc (*+), M-P. Gervais(*), J. Le Delliou(+) (*)Laboratoire d'informatique de Paris 6-8 rue du Capitaine Scott F75015 PARIS (+)EDF Research

More information

ISO/IEC TR TECHNICAL REPORT. Information technology Procedures for achieving metadata registry (MDR) content consistency Part 1: Data elements

ISO/IEC TR TECHNICAL REPORT. Information technology Procedures for achieving metadata registry (MDR) content consistency Part 1: Data elements TECHNICAL REPORT ISO/IEC TR 20943-1 First edition 2003-08-01 Information technology Procedures for achieving metadata registry (MDR) content consistency Part 1: Data elements Technologies de l'information

More information

This document is a preview generated by EVS

This document is a preview generated by EVS INTERNATIONAL STANDARD ISO 13209-3 First edition 2012-08-15 Road vehicles Open Test sequence exchange format (OTX) Part 3: Standard extensions and requirements Véhicules routiers Format public d'échange

More information

Semantic Web. Ontology Alignment. Morteza Amini. Sharif University of Technology Fall 94-95

Semantic Web. Ontology Alignment. Morteza Amini. Sharif University of Technology Fall 94-95 ه عا ی Semantic Web Ontology Alignment Morteza Amini Sharif University of Technology Fall 94-95 Outline The Problem of Ontologies Ontology Heterogeneity Ontology Alignment Overall Process Similarity Methods

More information

Ontology Links in the Distributed Ontology Language (DOL)

Ontology Links in the Distributed Ontology Language (DOL) Ontology Links in the Distributed Ontology Language (DOL) Oliver Kutz 1, Christoph Lange 1, Till Mossakowski 1,2 1 SFB/TR 8 Spatial cognition, University of Bremen, Germany 2 DFKI GmbH, Bremen, Germany

More information

Windpower/DER and Standards

Windpower/DER and Standards The Standards Based Integration Company Systems Integration Specialists Company, Inc. Windpower/DER and Standards Report to OSIsoft Renewable Energy Group Copyright 2008-2009 SISCO, Inc. Last time we talked:

More information

ELECTRIC POWER SYSTEM

ELECTRIC POWER SYSTEM FUNDAMENTAL CHANGES TO THE ELECTRIC POWER SYSTEM POST-2018 BY MARK SIIRA, ComRent International This article gives a glimpse of some significant changes that will occur in electric power system testing

More information

ENTERPRISE-WIDE USES OF DIAGNOSTICS DATA

ENTERPRISE-WIDE USES OF DIAGNOSTICS DATA ENTERPRISE-WIDE USES OF DIAGNOSTICS DATA M. Kezunovic, B. Matic-Cuka A. Edris Texas A&M University Electric Power Research Institute Abstract The paper discusses how the data integration and information

More information

IEC standard update

IEC standard update IEC 61850 standard update Christoph Brunner, Switzerland IEC 61850 Europe Conference Amsterdam September 27 28, 2017 Content IEC 61850 parts beyond Ed 1 scope Ongoing work related to IEC 61850 Improving

More information

Connected Grid Design Suite-Substation Workbench Release 1.0: Frequently Asked Questions (FAQ)

Connected Grid Design Suite-Substation Workbench Release 1.0: Frequently Asked Questions (FAQ) Connected Grid Design Suite-Substation Workbench Release 1.0: Frequently Asked Questions (FAQ) Revised June 12, 2013 Online Part Number: Cisco Systems, Inc. www.cisco.com Questions: Questions: Introduction

More information

RiMOM Results for OAEI 2008

RiMOM Results for OAEI 2008 RiMOM Results for OAEI 2008 Xiao Zhang 1, Qian Zhong 1, Juanzi Li 1, Jie Tang 1, Guotong Xie 2 and Hanyu Li 2 1 Department of Computer Science and Technology, Tsinghua University, China {zhangxiao,zhongqian,ljz,tangjie}@keg.cs.tsinghua.edu.cn

More information

International Journal of Computer Science Trends and Technology (IJCST) Volume 3 Issue 4, Jul-Aug 2015

International Journal of Computer Science Trends and Technology (IJCST) Volume 3 Issue 4, Jul-Aug 2015 RESEARCH ARTICLE OPEN ACCESS Multi-Lingual Ontology Server (MOS) For Discovering Web Services Abdelrahman Abbas Ibrahim [1], Dr. Nael Salman [2] Department of Software Engineering [1] Sudan University

More information

Interoperability made by IEC TC 57. Dr. Andreas Huber 9th EPCC Siemens AG 2006

Interoperability made by IEC TC 57. Dr. Andreas Huber 9th EPCC Siemens AG 2006 Interoperability made by IEC TC 57 Dr. Andreas Huber 9th EPCC 11.06.2007 International standards for interoperability The key for the utility and the vendor Integrated utility business operation F&C Marketing

More information

YAM++ Results for OAEI 2013

YAM++ Results for OAEI 2013 YAM++ Results for OAEI 2013 DuyHoa Ngo, Zohra Bellahsene University Montpellier 2, LIRMM {duyhoa.ngo, bella}@lirmm.fr Abstract. In this paper, we briefly present the new YAM++ 2013 version and its results

More information

XML Description Schema for Power Quality Data

XML Description Schema for Power Quality Data XML Description Schema for Power Quality J.P. Braun, V.J. Gosbell, I.S. Burnett School of Electrical, Computer and Telecommunications Engineering, University of Wollongong jbraun@ieee.org Abstract The

More information

A GML SCHEMA MAPPING APPROACH TO OVERCOME SEMANTIC HETEROGENEITY IN GIS

A GML SCHEMA MAPPING APPROACH TO OVERCOME SEMANTIC HETEROGENEITY IN GIS A GML SCHEMA MAPPING APPROACH TO OVERCOME SEMANTIC HETEROGENEITY IN GIS Manoj Paul, S. K. Ghosh School of Information Technology, Indian Institute of Technology, Kharagpur 721302, India - (mpaul, skg)@sit.iitkgp.ernet.in

More information

ALIN Results for OAEI 2016

ALIN Results for OAEI 2016 ALIN Results for OAEI 2016 Jomar da Silva, Fernanda Araujo Baião and Kate Revoredo Department of Applied Informatics Federal University of the State of Rio de Janeiro (UNIRIO), Rio de Janeiro, Brazil {jomar.silva,fernanda.baiao,katerevoredo}@uniriotec.br

More information

Mapping the Substation Configuration Language of IEC to ArchiMate

Mapping the Substation Configuration Language of IEC to ArchiMate Mapping the Substation Configuration Language of IEC 61850 to ArchiMate Johan König, Kun Zhu, Lars Nordström, Mathias Ekstedt, Robert Lagerström Industrial Information and Control Systems, Royal Institute

More information

A Knowledge-Based System for the Specification of Variables in Clinical Trials

A Knowledge-Based System for the Specification of Variables in Clinical Trials A Knowledge-Based System for the Specification of Variables in Clinical Trials Matthias Löbe, Barbara Strotmann, Kai-Uwe Hoop, Roland Mücke Institute for Medical Informatics, Statistics and Epidemiology

More information

Ontology Matching with CIDER: Evaluation Report for the OAEI 2008

Ontology Matching with CIDER: Evaluation Report for the OAEI 2008 Ontology Matching with CIDER: Evaluation Report for the OAEI 2008 Jorge Gracia, Eduardo Mena IIS Department, University of Zaragoza, Spain {jogracia,emena}@unizar.es Abstract. Ontology matching, the task

More information

Development of an Intelligent Station HMI in IEC Based Substation

Development of an Intelligent Station HMI in IEC Based Substation Journal of Electrical Engineering & Technology, Vol. 4, No.1, pp. 13~18, 2009 13 Development of an Intelligent Station HMI in IEC 61850 Based Substation Seong-Jeong Rim, Sheng-Wu Zeng* and Seung-Jae Lee**

More information

InsMT / InsMTL Results for OAEI 2014 Instance Matching

InsMT / InsMTL Results for OAEI 2014 Instance Matching InsMT / InsMTL Results for OAEI 2014 Instance Matching Abderrahmane Khiat 1, Moussa Benaissa 1 1 LITIO Lab, University of Oran, BP 1524 El-Mnaouar Oran, Algeria abderrahmane_khiat@yahoo.com moussabenaissa@yahoo.fr

More information

ISO INTERNATIONAL STANDARD. Financial services Universal financial industry message scheme Part 3: Modelling

ISO INTERNATIONAL STANDARD. Financial services Universal financial industry message scheme Part 3: Modelling INTERNATIONAL STANDARD ISO 20022-3 First edition 2013-05-01 Financial services Universal financial industry message scheme Part 3: Modelling Services financiers Schéma universel de messages pour l'industrie

More information

WHY WE NEED AN XML STANDARD FOR REPRESENTING BUSINESS RULES. Introduction. Production rules. Christian de Sainte Marie ILOG

WHY WE NEED AN XML STANDARD FOR REPRESENTING BUSINESS RULES. Introduction. Production rules. Christian de Sainte Marie ILOG WHY WE NEED AN XML STANDARD FOR REPRESENTING BUSINESS RULES Christian de Sainte Marie ILOG Introduction We are interested in the topic of communicating policy decisions to other parties, and, more generally,

More information

Patterns and Practices for CIM Applications

Patterns and Practices for CIM Applications 1 Patterns and Practices for Applications Rahul Khare, Mostafa Khadem, Sainath Moorty, Kittipong Methaprayoon, Jun Zhu Abstract The role of Common Information Model () in the Electric Utility industry,

More information

Use Case Process Contingency Definition Submittal COPS.P01.ModelManageData_UseCase_ContingencyDefinition_V0.3

Use Case Process Contingency Definition Submittal COPS.P01.ModelManageData_UseCase_ContingencyDefinition_V0.3 Use Case Process Definition Submittal COPS.P01.ModelManageData_UseCase_Definition_V0.3 : Definition Submittal Process Update Summary: Acronyms: Send Definition to MC in Network Modeling Group (NMG). This

More information

Smart Open Services for European Patients. Work Package 3.5 Semantic Services Definition Appendix E - Ontology Specifications

Smart Open Services for European Patients. Work Package 3.5 Semantic Services Definition Appendix E - Ontology Specifications 24Am Smart Open Services for European Patients Open ehealth initiative for a European large scale pilot of Patient Summary and Electronic Prescription Work Package 3.5 Semantic Services Definition Appendix

More information

ISO/IEC INTERNATIONAL STANDARD. Information technology CDIF transfer format Part 3: Encoding ENCODING.1

ISO/IEC INTERNATIONAL STANDARD. Information technology CDIF transfer format Part 3: Encoding ENCODING.1 INTERNATIONAL STANDARD ISO/IEC 15475-3 First edition 2002-11-01 Information technology CDIF transfer format Part 3: Encoding ENCODING.1 Technologies de l'information Format de transfert CDIF Partie 3:

More information

Matching and Alignment: What is the Cost of User Post-match Effort?

Matching and Alignment: What is the Cost of User Post-match Effort? Matching and Alignment: What is the Cost of User Post-match Effort? (Short paper) Fabien Duchateau 1 and Zohra Bellahsene 2 and Remi Coletta 2 1 Norwegian University of Science and Technology NO-7491 Trondheim,

More information

DABYS: EGOS Generic Database System

DABYS: EGOS Generic Database System SpaceOps 2010 ConferenceDelivering on the DreamHosted by NASA Mars 25-30 April 2010, Huntsville, Alabama AIAA 2010-1949 DABYS: EGOS Generic base System Isabel del Rey 1 and Ramiro

More information

DIGITAL SUBSTATION IEC ENTSO-E ACTION PLAN TO IMPROVE IEC DATA MODELS AND ENGINEERING PROCESS

DIGITAL SUBSTATION IEC ENTSO-E ACTION PLAN TO IMPROVE IEC DATA MODELS AND ENGINEERING PROCESS ENTSO-E ACTION PLAN TO IMPROVE IEC 61850 DATA MODELS AND ENGINEERING PROCESS DIGITAL SUBSTATION IEC 61850 Moscow, The Russian Federation, 3. October 2017 INTRODUCTION ENTSO-E at a glance Page 3 ENTSO-E

More information

Development of Contents Management System Based on Light-Weight Ontology

Development of Contents Management System Based on Light-Weight Ontology Development of Contents Management System Based on Light-Weight Ontology Kouji Kozaki, Yoshinobu Kitamura, and Riichiro Mizoguchi Abstract In the Structuring Nanotechnology Knowledge project, a material-independent

More information

Overcoming Challenges Using the CIM as a Semantic Model for Energy Applications

Overcoming Challenges Using the CIM as a Semantic Model for Energy Applications Overcoming Challenges Using the CIM as a Semantic Model for Energy Applications Andrew Crapo 1, Katrina Griffith 2, Ankesh Khandelwal 3, John Lizzi 1, Abha Moitra 1, and Xiaofeng Wang 2 1 GE Global Research,

More information

ISO INTERNATIONAL STANDARD. Financial services Universal financial industry message scheme Part 8: ASN.1 generation

ISO INTERNATIONAL STANDARD. Financial services Universal financial industry message scheme Part 8: ASN.1 generation INTERNATIONAL STANDARD ISO 20022-8 First edition 2013-05-01 Financial services Universal financial industry message scheme Part 8: ASN.1 generation Services financiers Schéma universel de messages pour

More information

Unified Modeling Language (UML) Fundamentals & Intro to Profiles

Unified Modeling Language (UML) Fundamentals & Intro to Profiles Unified Modeling Language (UML) Fundamentals & Intro to Profiles Margaret Goodrich Land Tel: +1-903-489-1494 Cell: +1-903-477-7176 E-Mail: margaret@j-mgoodrich.com Topics Information Modeling Methodology

More information

ISO/IEC INTERNATIONAL STANDARD

ISO/IEC INTERNATIONAL STANDARD INTERNATIONAL STANDARD ISO/IEC 19500-2 This is a preview of "ISO/IEC 19500-2:2012". Click here to purchase the full version from the ANSI store. Second edition 2012-04-15 Information technology Object

More information

The development of IEC generic object oriented substation event monitoring application for Tenaga Nasional Berhad Smart Substation

The development of IEC generic object oriented substation event monitoring application for Tenaga Nasional Berhad Smart Substation International Journal of Smart Grid and Clean Energy The development of IEC 61850 generic object oriented substation event monitoring application for Tenaga Nasional Berhad Smart Substation M. S. Shokri

More information

Falcon-AO: Aligning Ontologies with Falcon

Falcon-AO: Aligning Ontologies with Falcon Falcon-AO: Aligning Ontologies with Falcon Ningsheng Jian, Wei Hu, Gong Cheng, Yuzhong Qu Department of Computer Science and Engineering Southeast University Nanjing 210096, P. R. China {nsjian, whu, gcheng,

More information

INTERNATIONAL STANDARD

INTERNATIONAL STANDARD INTERNATIONAL STANDARD IEC 61400-25-1 First edition 2006-12 Wind turbines Part 25-1: Communications for monitoring and control of wind power plants Overall description of principles and models IEC 2006

More information

ISO/IEC INTERNATIONAL STANDARD. Information technology Multimedia framework (MPEG-21) Part 21: Media Contract Ontology

ISO/IEC INTERNATIONAL STANDARD. Information technology Multimedia framework (MPEG-21) Part 21: Media Contract Ontology INTERNATIONAL STANDARD ISO/IEC 21000-21 First edition 2013-07-01 Information technology Multimedia framework (MPEG-21) Part 21: Media Contract Ontology Technologies de l'information Cadre multimédia (MPEG-21)

More information

An Alternative CIM Modeling Approach using JSON-LD

An Alternative CIM Modeling Approach using JSON-LD An Alternative CIM Modeling Approach using JSON-LD Authors: Milan Gavrić, Kosa Nenadić Presented by: Milan Gavrić, Ph.D. milan.gavric@schneider-electric-dms.com Head of Systems Integration Department Content

More information

A solution for applying IEC function blocks in the development of substation automation systems

A solution for applying IEC function blocks in the development of substation automation systems A solution for applying IEC 61499 function blocks in the development of substation automation systems Valentin Vlad, Cezar D. Popa, Corneliu O. Turcu, Corneliu Buzduga Abstract This paper presents a solution

More information

RULES DRIVEN PROJECT SPECIFICATION IN THE CONTEXT OF IEC BASIC APPLICATION PROFILES

RULES DRIVEN PROJECT SPECIFICATION IN THE CONTEXT OF IEC BASIC APPLICATION PROFILES RULES DRIVEN PROJECT SPECIFICATION IN THE CONTEXT OF IEC 61850 BASIC APPLICATION PROFILES Camille BLOCH Mayank SHARMA Michael HAECKER Schneider Electric - France Schneider Electric - India Schneider Electric

More information

INTERNATIONAL STANDARD

INTERNATIONAL STANDARD INTERNATIONAL STANDARD IEC 62325-451-4 Edition 2.0 2017-04 colour inside Framework for energy market communications Part 451-4: Settlement and reconciliation business process, contextual and assembly models

More information

USING DECISION MODELS METAMODEL FOR INFORMATION RETRIEVAL SABINA CRISTIANA MIHALACHE *

USING DECISION MODELS METAMODEL FOR INFORMATION RETRIEVAL SABINA CRISTIANA MIHALACHE * ANALELE ŞTIINŢIFICE ALE UNIVERSITĂŢII ALEXANDRU IOAN CUZA DIN IAŞI Tomul LIV Ştiinţe Economice 2007 USING DECISION MODELS METAMODEL FOR INFORMATION RETRIEVAL SABINA CRISTIANA MIHALACHE * Abstract This

More information