CIMPHONY. Alan McMorran. OGO Open Grid Systems

Size: px
Start display at page:

Download "CIMPHONY. Alan McMorran. OGO Open Grid Systems"

Transcription

1 CIMPHONY Alan McMorran Open Grid Systems

2 History Cimphony was the product of a number of initiatives for dealing with power system data Started in 2002, built from there in an evolutionary manner Used a number of custom frameworks Web-based written in Java, run under Apache-Tomcat Used at a number of Interoperability tests for validation of model instances 2

3 Open Grid Systems Left the University in March 2010, formed Open Grid Systems Ltd. Cimphony has proved itself very useful, but the technology stacks available today are superior and more mature Complete re-write of Cimphony code to run under OSGi with Eclipse-based UI and to use standards in place of custom frameworks Common components for server, CLI and UI interfaces 3

4 OSGi OSGi is a module and service system for Java Supports dynamic component loading Eclipse is built on an OSGi runtime OSGi runtimes can be used to deploy web services, run rich client applications, command line utilities or server based solutions Cimphony is now built as OSGi bundles Bundles provide functionality, services and extensions 4

5 Eclipse Modelling Framework Cimphony previously used a custom Java generation library for producing objects from a meta-model A CIMTool extension now produces Ecore models from any meta-model loaded into CIMTool (or from a profile) Ecore is the meta-model language for the Eclipse Modelling Framework (EMF) Adding new meta-models to Cimphony is now done using EMF tools built into Eclipse 5

6 6

7 Structure vs Format This approach separates the structure of data from its format using ResourceImpl to serialise/deserialise data RDF XML becomes just one serialisation mechanism, the software deals with data as objects (know as EObjects for EMF Ecore DataModel Serialised Data ResourceImpl ResourceImpl Serialised Data EObjects 7

8 Cimphony Frameworks RDF - Meta-model agnostic RDF XML interface Profiles - Support for profiles and groups for profiled import and export of data as multiple datasets Validation - OCL based validation framework with registry for registering multiple validation profiles Transformation - QVTO based transformation framework for registering and running transformations on data Web Services - Support for exposing functionality using Web Services 8

9 context IEC61970::Core::ConductingEquipment The ConductingEquipment must either have a BaseVoltage association or be within a VoltageLevel. --@Doc: If both are set the VoltageLevel's BaseVoltage must equal that of the ConductingEquipment inv: ( ( (self.basevoltage =null) and (self.equipmentcontainer <> null) and (self.equipmentcontainer.ocliskindof(iec61970::core::voltagelevel)) ) or ( (self.basevoltage <>null) and ( (self.equipmentcontainer = null) or ( (self.equipmentcontainer <> null) and (self.equipmentcontainer.ocliskindof(iec61970::core::voltagelevel)) and (self.equipmentcontainer.oclastype(iec61970::core::voltagelevel).basevoltage = self.basevoltage) ) or ( (self.equipmentcontainer <> null) and (not self.equipmentcontainer.ocliskindof(iec61970::core::voltagelevel)) ) ) ) ) OCL 9

10 QVTO mapping PSSE::Bus:: bustonode() : CIM::IEC61970::Topology::TopologicalNode{ name := self.name; BaseVoltage := self.basekv.getbasevoltage(); if (not name.startswith("x")) then{ var busbar : CIM::IEC61970::Wires::BusbarSection := object CIM::IEC61970::Wires::BusbarSection{ name := self.name+" B"; }; busbar.createterminal(1, result); var vl : CIM::IEC61970::Core::VoltageLevel := object CIM::IEC61970::Core::VoltageLevel{ name := self.basekv.tostring()+"kv"; BaseVoltage := self.basekv.getbasevoltage(); }; busbar.equipmentcontainer := vl; result.connectivitynodecontainer := vl; }endif; var sv : CIM::IEC61970::StateVariables::SvVoltage := object CIM::IEC61970::StateVariables::SvVoltage{ v := self.voltagemagnitude * self.basekv; angle := self. VoltageAngle; TopologicalNode := result; }; } 10

11 Cimphony Frameworks Topological Processing - for creating bus-branch network representations. Registers multiple processors for different schemas Geographical Tools - tools for geographical visualisation including coordinate conversion, KML generation, heatmap overlays for voltage dips or line ratings ZCIM - native support for dealing with multiple datasets within a single Zip archive 11

12 12

13 13

14 14

15 15

16 Cimphony Frameworks Multiple schemas already supported CIM v10-15 ERCOT Nodel Market model Multispeak v3 IEC61850 SCL PSS/E v31 & 32 Google Earth KML v2.1 16

17 Validation Profiles ENTSO-E 2010 Equipment, Topology, State & Dynamics Auto-generated from OWL then added extended restrictions OCL profile CPSM 2010 Equipment, State As with ENTSO-E, added extended restrictions CDPSM

18 User Interface Work until now has focussed on the functionality and frameworks A good UI though is needed for useful desktop applications Meta-model agnostic Graphical tree-editor and browser built on open-source Eclipse EMF Editor can be used to browse data sets Single Line Diagram Editor for viewing, creating and editing single line diagrams (with support for multiple different meta-models inc. CIM14 and PSS/E) 18

19 Quick Demo 19

20 Cimphony Applications A CIM Validator was released on 16/6/2010 for Interoperability participants Uses core Cimphony frameworks with CIM 14v15 meta-model and validation profiles for CPSM and ENTSO-E Command-line app using OSGi runtime, engine is model and profile agnostic Needed to be produced quickly (within a few days) hence the lack of a UI! 20

21 21 Cimphony IOP Validation Tool usage: validate [-options] [-g group] [-p profile] [data...] Options: -h This help prompt -l List all profile groups -L group List all profiles for a group -v Verbose output -o file Output results to file in specified path -g group Specify the group to be used -p profile Optionally specify a particular profile Examples: validate -g entsoe 16bus.zip validate -g cpsm equipment.cimrdf topology.cimrdf validate -v -o output.txt -g cpsm 16bus.zip validate -v -g entsoe -p equipment equipment.cimrdf (c) Copyright 2010 Open Grid Systems Ltd. Version 0.1 June 16th 2010

22 22 ERROR: SynchronousMachine (All Objects of class) -Failed constraints: ENTSO-E Equipment ( -- referencepriority must be set -Failed constraints: ENTSO-E Dynamics ( -- s12 must be set. Saturation factor at 120% of rated term.voltage (>=S1) -- s1 must be set. Saturation factor at rated term. voltage (>= 0.) -- rs must be set. Stator (armature) resistance- Equivalent resistance when used for GenEquiv model -- parametersformtype must be set. -- xls must be set. Stator leakage reactance (> 0.) Verbose Output option includes OCL ERROR: SynchronousMachine (All Objects of class) -Failed constraints: ENTSO-E Equipment ( -- referencepriority must be set [self.isset('referencepriority')] -Failed constraints: ENTSO-E Dynamics ( -- s12 must be set. Saturation factor at 120% of rated term.voltage (>=S1) [self.isset('s12')] -- s1 must be set. Saturation factor at rated term. voltage (>= 0.) [self.isset('s1')] -- rs must be set. Stator (armature) resistance- Equivalent resistance when used for GenEquiv model [self.isset('rs')] -- parametersformtype must be set. [self.isset('parametersformtype')] -- xls must be set. Stator leakage reactance (> 0.) [self.isset('xls')]

23 Plans For interoperability tests: SLD Editor and Hierarchical browser Integrated load-flow and state-estimation engine CIM Incremental support (Import/Export) Beyond: Database-driven model persistence using Connected Data Objects (CDO) framework Support for additional schemas, formats, transformations, validation profiles etc. Full UI for transformation, validation and analysis 23

24 Extensible The majority of frameworks and tools are all model agnostic Wide use of service registries to enable dynamic deployment of meta-models, profiles, transforms etc. Already been extended to support additional models (e.g. PSS/E) and extended CIM model (ERCOT) Uses open-source Eclipse/OSGi based tools and libraries The frameworks will be released under LGPL and EPL licenses 24

25 Questions? ExemplarexMachina.com /ɪgˈzɛmplər ɛks ˈmækɨnə/ {latin: Model from the Machine}

Model Driven Transformation

Model Driven Transformation Model Driven Transformation Alan McMorran B.Eng Ph.D Susan Rudd B.Sc Ph.D G pen Grid Systems Modelling Data 2 G pen Grid Systems What is Information Modelling An information model is a representation of

More information

CIM Topology & State. Alan McMorran B.Eng Ph.D. OGO Open Grid Systems

CIM Topology & State. Alan McMorran B.Eng Ph.D. OGO Open Grid Systems CIM Topology & Alan McMorran B.Eng Ph.D 1 Topological vs Connectivity Node Breaker/Bus Branch modelling in the CIM 2 Two Levels of Detail Bus-branch has Powerflow buses (TopologicalNodes) Impedance branches

More information

CIM University: Track 3 Tools Session CIM User s Group June 13, 2017

CIM University: Track 3 Tools Session CIM User s Group June 13, 2017 CIM University: Track 3 Tools Session CIM User s Group June 13, 2017 Margaret Goodrich Principal Consultant, Project Consultants, LLC Email: margaret@j-mgoodrich.com Phone: 903-477-7176 1 Using CIMTool

More information

Eclipse Modeling Framework (EMF) Paweł Żalejko

Eclipse Modeling Framework (EMF) Paweł Żalejko Eclipse Modeling Framework (EMF) Paweł Żalejko Agenda Model-Driven Development What is EMF? EMF demo - hello world EMF demo - command stack & adapters EMF demo - data binding & validation EMF demo - generating

More information

A perspective on European TSOs migration to CIM data exchange

A perspective on European TSOs migration to CIM data exchange Youssef AKEL A perspective on European TSOs migration to CIM data exchange CIM planning and operations exchanges seen from RTE Plan 1. Planning and operations data exchanges from RTE 2. Migration of data

More information

Tools to Develop New Linux Applications

Tools to Develop New Linux Applications Tools to Develop New Linux Applications IBM Software Development Platform Tools for every member of the Development Team Supports best practices in Software Development Analyst Architect Developer Tester

More information

Spring and OSGi. Martin Lippert akquinet agile GmbH Bernd Kolb Gerd Wütherich

Spring and OSGi. Martin Lippert akquinet agile GmbH Bernd Kolb Gerd Wütherich Spring and OSGi Martin Lippert akquinet agile GmbH lippert@acm.org Bernd Kolb b.kolb@kolbware.de Gerd Wütherich gerd@gerd-wuetherich.de 2006 by Martin Lippert, Bernd Kolb & Gerd Wütherich, made available

More information

The Next Generation of Eclipse: e4. Mike Milinkovich Executive Director Eclipse Foundation

The Next Generation of Eclipse: e4. Mike Milinkovich Executive Director Eclipse Foundation The Next Generation of Eclipse: e4 Mike Milinkovich Executive Director Eclipse Foundation 1 Changing Environment New Technologies: RIA Applications and Cloud Computing AJAX, Flash, Silverlight Amazon E2

More information

Planned Review Date: June 10, 2009 Communication Channel: eclipse.tools.emf Dave Steinberg and Ed Merks

Planned Review Date: June 10, 2009 Communication Channel: eclipse.tools.emf Dave Steinberg and Ed Merks EMF Core 2.5 Release Review Galileo Simultaneous Release Planned Review Date: June 10, 2009 Communication Channel: eclipse.tools.emf Dave Steinberg and Ed Merks Eclipse Modeling Framework Framework and

More information

ECLIPSE PERSISTENCE PLATFORM (ECLIPSELINK) FAQ

ECLIPSE PERSISTENCE PLATFORM (ECLIPSELINK) FAQ ECLIPSE PERSISTENCE PLATFORM (ECLIPSELINK) FAQ 1. What is Oracle proposing in EclipseLink, the Eclipse Persistence Platform Project? Oracle is proposing the creation of the Eclipse Persistence Platform

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

Regular Forum of Lreis. Speechmaker: Gao Ang

Regular Forum of Lreis. Speechmaker: Gao Ang Regular Forum of Lreis Speechmaker: Gao Ang Content: A. Overview of Eclipse Project B. Rich Client Platform C. The progress of ustudio Project D. The development of Grid technology and Grid GIS E. Future

More information

Model Driven Integration Using CCAPI Technologies

Model Driven Integration Using CCAPI Technologies Model Driven Integration Using CCAPI Technologies 2002 EMS Users Conference Ralph Mackiewicz, SISCO Inc. Agenda What is Model Driven Integration? Common Information Model Model Driven Messaging Model Aware

More information

CIM Diagram Layout. Model Driven Architectures and Eclipse. OGO Open Grid Systems. Alan McMorran B.Eng Ph.D

CIM Diagram Layout. Model Driven Architectures and Eclipse. OGO Open Grid Systems. Alan McMorran B.Eng Ph.D CIM Diagram Layout Model Driven Architectures and Eclipse Technologies for the Power Industry Alan McMorran B.Eng Ph.D G pen Grid Systems Introduction The CIM is used widely for exchanging electrical network

More information

DOC // JAVA TOMCAT WEB SERVICES TUTORIAL EBOOK

DOC // JAVA TOMCAT WEB SERVICES TUTORIAL EBOOK 26 April, 2018 DOC // JAVA TOMCAT WEB SERVICES TUTORIAL EBOOK Document Filetype: PDF 343.68 KB 0 DOC // JAVA TOMCAT WEB SERVICES TUTORIAL EBOOK This tutorial shows you to create and deploy a simple standalone

More information

Lessons learned from building Eclipse-based add-ons for commercial modeling tools

Lessons learned from building Eclipse-based add-ons for commercial modeling tools Lessons learned from building Eclipse-based add-ons for commercial modeling tools (from a technology perspective) István Ráth Ákos Horváth EclipseCon France June 14 2018 MagicDraw A popular modeling tool

More information

Using CIMTool. The Standards Based Integration Company. Systems Integration Specialists Company, Inc.

Using CIMTool. The Standards Based Integration Company. Systems Integration Specialists Company, Inc. The Standards Based Integration Company Systems Integration Specialists Company, Inc. Using CIMTool Margaret Goodrich, Manager, Systems Engineering SISCO, Inc. 6605 19½ Mile Road Sterling Heights, MI 48314

More information

Running MarkLogic in Containers (Both Docker and Kubernetes)

Running MarkLogic in Containers (Both Docker and Kubernetes) Running MarkLogic in Containers (Both Docker and Kubernetes) Emma Liu Product Manager, MarkLogic Vitaly Korolev Staff QA Engineer, MarkLogic @vitaly_korolev 4 June 2018 MARKLOGIC CORPORATION Source: http://turnoff.us/image/en/tech-adoption.png

More information

The Universe of Possibilities using AF. Copyr i ght 2014 O SIs oft, LLC.

The Universe of Possibilities using AF. Copyr i ght 2014 O SIs oft, LLC. The Universe of Possibilities using AF Presented by Herbert Falk Copyr i ght 2014 O SIs oft, LLC. The Core of Future Applications PI TAGs PI Event Frames AF PI Notifications PI Analytics 2 Application

More information

Model Driven Development with EMF and EclipseLink (experiences in MDD and generating user interfaces)

Model Driven Development with EMF and EclipseLink (experiences in MDD and generating user interfaces) Model Driven Development with EMF and EclipseLink (experiences in MDD and generating user interfaces) Suresh Krishna, Oracle Inc. EclipseCon, 03.20.2008. 1 Background : Model acts as the heart of the business

More information

Fusion Registry 9 SDMX Data and Metadata Management System

Fusion Registry 9 SDMX Data and Metadata Management System Registry 9 Data and Management System Registry 9 is a complete and fully integrated statistical data and metadata management system using. Whether you require a metadata repository supporting a highperformance

More information

GMF 2.0 Europa Simultaneous Release

GMF 2.0 Europa Simultaneous Release GMF 2.0 Europa Simultaneous Release June 06, 2007 Release Review revision 2.3.1 January 17, 2007 1 Europa Simultaneous Release 2007 by Borland Software Corporation, made available under the EPL v1.0 GMF

More information

CIMSpy EE & M 3 Model Maintenance & Management

CIMSpy EE & M 3 Model Maintenance & Management CIMSpy EE & M 3 Model Maintenance & Management CIMug, November 2014 Power Info LLC Utility IT Solution Provider General Info Specialized in providing standard-based IT solutions to utilities and vendors

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

CIM in the Middle. Dora Nakafuji Lauren Gouveia Hawaiian Electric Company. Alan McMorran Susan Rudd Open Grid Systems

CIM in the Middle. Dora Nakafuji Lauren Gouveia Hawaiian Electric Company. Alan McMorran Susan Rudd Open Grid Systems in the Middle Integrating Transmission and Distribution Systems using Alan McMorran Susan Rudd Open Grid Systems Dora Nakafuji Lauren Gouveia Hawaiian Electric Company 2 Introduction 3 O Open Grid Systems

More information

Perfect for the Enterprise

Perfect for the Enterprise Eike Stepper stepper@esc-net.de http://www.esc-net.de http://thegordian.blogspot.com Berlin, Germany The CDO Model Repository Perfect for the Enterprise Enterprise Modeling Day, Zurich, October 28, 2010

More information

ESTEC, June 9 th, 2016

ESTEC, June 9 th, 2016 System Concept Simulation for Concurrent Engineering Final Presentation Stephan Kranz ESTEC, June 9 th, 2016 Telespazio VEGA Deutschland Overview SYSTEM CONCEPT SIMULATOR Study Logic Use Cases / User Requirements

More information

GigaSpaces XAP 10.0 Core Training Using Core Features of GigaSpaces XAP and OpenSpaces

GigaSpaces XAP 10.0 Core Training Using Core Features of GigaSpaces XAP and OpenSpaces GigaSpaces XAP 10.0 Core Training Using Core Features of GigaSpaces XAP and OpenSpaces Enter the SBA world with GigaSpaces XAP and its built-in development framework OpenSpaces. This training is designed

More information

From the RCP Book To Reality. Jean-Michel Lemieux IBM Rational, Ottawa, Canada

From the RCP Book To Reality. Jean-Michel Lemieux IBM Rational, Ottawa, Canada From the RCP Book To Reality Jean-Michel Lemieux IBM Rational, Ottawa, Canada 2008 by Jean-Michel Lemieux made available under the EPL v1.0 March 2008 Past, Present, Future Eclipse committer since it s

More information

RESTful CIM using the Open Data Protocol

RESTful CIM using the Open Data Protocol RESTful CIM using the Open Data Protocol Alan McMorran B.Eng Ph.D!1 CIM Exchanges!2 CIM Data Exchange The exchange of data using CIM has traditionally been used in two primary ways: Full Model exchange

More information

Eclipse Scout. Release Notes. Scout Team. Version 7.0

Eclipse Scout. Release Notes. Scout Team. Version 7.0 Eclipse Scout Release Notes Scout Team Version 7.0 Table of Contents About This Release.......................................................................... 1 Service Releases..........................................................................

More information

OSGi on the Server. Martin Lippert (it-agile GmbH)

OSGi on the Server. Martin Lippert (it-agile GmbH) OSGi on the Server Martin Lippert (it-agile GmbH) lippert@acm.org 2009 by Martin Lippert; made available under the EPL v1.0 October 6 th, 2009 Overview OSGi in 5 minutes Apps on the server (today and tomorrow)

More information

Project Title REPRESENTATION OF ELECTRICAL NETWORK USING GOOGLE MAP API. Submitted by: Submitted to: SEMANTA RAJ NEUPANE, Research Assistant,

Project Title REPRESENTATION OF ELECTRICAL NETWORK USING GOOGLE MAP API. Submitted by: Submitted to: SEMANTA RAJ NEUPANE, Research Assistant, - 1 - Project Title REPRESENTATION OF ELECTRICAL NETWORK USING GOOGLE MAP API Submitted by: SEMANTA RAJ NEUPANE, Research Assistant, Department of Electrical Energy Engineering, Tampere University of Technology

More information

for Multi-Services Gateways

for Multi-Services Gateways KURA an OSGi-basedApplication Framework for Multi-Services Gateways Introduction & Technical Overview Pierre Pitiot Grenoble 19 février 2014 Multi-Service Gateway Approach ESF / Increasing Value / Minimizing

More information

Data Governance for the Connected Enterprise

Data Governance for the Connected Enterprise Data Governance for the Connected Enterprise Irene Polikoff and Jack Spivak, TopQuadrant Inc. November 3, 2016 Copyright 2016 TopQuadrant Inc. Slide 1 Data Governance for the Connected Enterprise Today

More information

OSLC Consumer with Eclipse Lyo Project

OSLC Consumer with Eclipse Lyo Project OSLC Consumer with Eclipse Lyo Project Jean-Luc Johnson, AIRBUS Group Innovations Gray Bachelor, IBM Rational Samit Mehta, IBM Rational Harry Reeder, IBM Rational Your team today Jean-Luc Johnson (Airbus

More information

What's New in ActiveVOS 7.1 Includes ActiveVOS 7.1.1

What's New in ActiveVOS 7.1 Includes ActiveVOS 7.1.1 What's New in ActiveVOS 7.1 Includes ActiveVOS 7.1.1 2010 Active Endpoints Inc. ActiveVOS is a trademark of Active Endpoints, Inc. All other company and product names are the property of their respective

More information

Swordfish The Eclipse SOA Runtime Framework. Copyright SOPERA GmbH, Content is made available under the EPL v1.0.

Swordfish The Eclipse SOA Runtime Framework. Copyright SOPERA GmbH, Content is made available under the EPL v1.0. Swordfish The Eclipse SOA Runtime Framework Copyright SOPERA GmbH, 2008. Content is made available under the EPL v1.0. SOA Architecture and Features Usage Scenarios Past, present, and future Your questions

More information

Introduction to Genero Enterprise

Introduction to Genero Enterprise Introduction to Genero Enterprise Laurent Galais Services & Support Manager Four Js US & Canada Tuesday, November 17, 201 Tysons Corner, VA Technical Advisory Council 201 Costa d Este Beach Resort, Vero

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

An Approach Of Developing Business Processes With Web Services in Grid

An Approach Of Developing Business Processes With Web Services in Grid An Approach Of Developing Business Processes With Web Services in Grid Vladimir Dimitrov, Radoslava Goranova Faculty of Mathematics and Informatics University of Sofia St. Kliment Ohridski June 28 - July

More information

Create your own Carbon Component. Sameera Jayasoma Technical Lead and Product Manager of WSO2 Carbon

Create your own Carbon Component. Sameera Jayasoma Technical Lead and Product Manager of WSO2 Carbon Create your own Carbon Component Sameera Jayasoma Technical Lead and Product Manager of WSO2 Carbon sameera@wso2.com WSO2 Founded in 2005 by acknowledged leaders in XML, Web Services Technologies & Standards

More information

Equinox OSGi: Pervasive Componentization

Equinox OSGi: Pervasive Componentization Equinox OSGi: Pervasive Componentization Thomas Watson Equinox Development Lead IBM Lotus Jeff McAffer, Eclipse RCP and Equinox Lead IBM Rational Software 10/3/2006 Why is Eclipse interesting? Extensible

More information

EMC Documentum Composer

EMC Documentum Composer EMC Documentum Composer Version 6.5 SP2 User Guide P/N 300-009-462 A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright 2008 2009 EMC Corporation. All

More information

B. Assets are shared-by-copy by default; convert the library into *.jar and configure it as a shared library on the server runtime.

B. Assets are shared-by-copy by default; convert the library into *.jar and configure it as a shared library on the server runtime. Volume A~B: 114 Questions Volume A 1. Which component type must an integration solution developer define for a non-sca component such as a Servlet that invokes a service component interface? A. Export

More information

IBM. IBM WebSphere Application Server Migration Toolkit. WebSphere Application Server. Version 9.0 Release

IBM. IBM WebSphere Application Server Migration Toolkit. WebSphere Application Server. Version 9.0 Release WebSphere Application Server IBM IBM WebSphere Application Server Migration Toolkit Version 9.0 Release 18.0.0.3 Contents Chapter 1. Overview......... 1 Chapter 2. What's new........ 5 Chapter 3. Support..........

More information

Modeling tools go up to the cloud... Mélanie Bats - Pierre-Charles David - Sirius Tech Lead

Modeling tools go up to the cloud... Mélanie Bats - Pierre-Charles David - Sirius Tech Lead Modeling tools go up to the cloud... Mélanie Bats - CTO @melaniebats Pierre-Charles David - Sirius Tech Lead Obeo Is a key player of the Modeling Ecosystem! Has a long experience in developing graphical

More information

Comparing graphical DSL editors

Comparing graphical DSL editors Comparing graphical DSL editors AToM 3 vs GMF & MetaEdit+ Nick Baetens Outline Introduction MetaEdit+ Specifications Workflow GMF Specifications Workflow Comparison 2 Introduction Commercial Written in

More information

CIS-CAT Pro Dashboard Documentation

CIS-CAT Pro Dashboard Documentation CIS-CAT Pro Dashboard Documentation Release 1.0.0 Center for Internet Security February 03, 2017 Contents 1 CIS-CAT Pro Dashboard User s Guide 1 1.1 Introduction...............................................

More information

April Oracle Spatial User Conference

April Oracle Spatial User Conference April 29, 2010 Hyatt Regency Phoenix Phoenix, Arizona USA Parag Parikh Dan Kuklov CURRENT Group Kerry D. McBee Xcel Energy Unified Real-Time Network Topology Management Using Xcel Energy SmartGridCity

More information

SCA Tools: new & noteworthy

SCA Tools: new & noteworthy SCA Tools: new & noteworthy Vincent Zurczak ( EBM WebSourcing ) A large part of the SCA Tools project was implemented in the scope of the SCOrWare project funded by the French Research National Agency

More information

ActiveVOS Technologies

ActiveVOS Technologies ActiveVOS Technologies ActiveVOS Technologies ActiveVOS provides a revolutionary way to build, run, manage, and maintain your business applications ActiveVOS is a modern SOA stack designed from the top

More information

Eclipse IoT State of the Union. Benjamin Cabé, Eclipse

Eclipse IoT State of the Union. Benjamin Cabé, Eclipse Eclipse IoT State of the Union Benjamin Cabé, Eclipse Foundation @kartben Typical IoT Architecture telemetry telemetry commands commands Gateways Devices (sensors & actuators) IoT Cloud Platform Applications

More information

Papyrus: Advent of an Open Source IME at Eclipse (Redux)

Papyrus: Advent of an Open Source IME at Eclipse (Redux) Papyrus: Advent of an Open Source IME at Eclipse (Redux) Kenn Hussey Eclipse Modeling Day, Toronto November 18, 2009 A Perfect Storm for Tools Core technologies like MOF and UML are evolving Microsoft

More information

Report on the CDPSM 2011 CIM-XML Interoperability Test The Power of the Common Information Model (CIM) to Exchange Power System Data

Report on the CDPSM 2011 CIM-XML Interoperability Test The Power of the Common Information Model (CIM) to Exchange Power System Data Report on the CDPSM 2011 CIM-XML Interoperability Test The Power of the Common Information Model (CIM) to Exchange Power System Data Final Report, June 25, 2012 Version 2.0 June 25, 2012 UCAIug Project

More information

Smart Client development with the Eclipse Rich Client Platform

Smart Client development with the Eclipse Rich Client Platform Smart Client development with the Eclipse Rich Client Platform Nick Edgar and Pascal Rapicault IBM Rational Software Ottawa, Ontario Eclipse Platform Committers To contact us: news://news.eclipse.org/eclipse.platform.rcp

More information

Intellicus Getting Started

Intellicus Getting Started Intellicus Getting Started Intellicus Web-based Reporting Suite Version 4.5 Enterprise Professional Smart Developer Smart Viewer Intellicus Technologies info@intellicus.com www.intellicus.com Copyright

More information

Use of the CIM Ontology. Scott Neumann, UISOL Arnold DeVos, Langdale Steve Widergren, PNNL Jay Britton, Areva

Use of the CIM Ontology. Scott Neumann, UISOL Arnold DeVos, Langdale Steve Widergren, PNNL Jay Britton, Areva Use of the CIM Ontology Scott Neumann, UISOL Arnold DeVos, Langdale Steve Widergren, PNNL Jay Britton, Areva Common Information Model (CIM) IEC Common Information Model (CIM) models objects and information

More information

Flexible Data Maintenance for CIM based Control Systems. Ingo Goldak

Flexible Data Maintenance for CIM based Control Systems. Ingo Goldak Flexible Data Maintenance for CIM based Control Systems Ingo Goldak Agenda 1 2 3 4 5 CIM Basics The Tool IMM - Information Model Management IMM Generic Data Model IMM Job Management IMM Interfaces Objectives

More information

EMF Ganymede Simultaneous Release

EMF Ganymede Simultaneous Release EMF 2.4.0 Ganymede Simultaneous Release June 4 th, 2008 Ganymede Release Talking Points Noteworthy New Features Support for Content Types Applications using EMF can now register its resources using content

More information

ADF OAF Who Cares? You Do! Oracle Applications Framework / Application Development Framework - Which way do I go?

ADF OAF Who Cares? You Do! Oracle Applications Framework / Application Development Framework - Which way do I go? ADF OAF Who Cares? You Do! Oracle Applications Framework / Application Development Framework - Which way do I go? 2 Introductions Who am I and why am I here? Audience: Development Management OAF Developers

More information

GAVIN KING RED HAT CEYLON SWARM

GAVIN KING RED HAT CEYLON SWARM GAVIN KING RED HAT CEYLON SWARM CEYLON PROJECT A relatively new programming language which features: a powerful and extremely elegant static type system built-in modularity support for multiple virtual

More information

Component-based Runtime Environment for Cloud Applications

Component-based Runtime Environment for Cloud Applications Component-based Runtime Environment for Cloud Applications Mark Wallis B. Comp Sci (Honours) NICTA Software Systems Summer School 2013 Distributed Computing Research Group School of Electrical Engineering

More information

Architecture for automatically generating an efficient IEC based communications platform for the rapid prototyping of protection schemes

Architecture for automatically generating an efficient IEC based communications platform for the rapid prototyping of protection schemes Architecture for automatically generating an efficient IEC 61850-based communications platform for the rapid prototyping of protection schemes Steven Blair, Campbell Booth, Graeme Burt Institute for Energy

More information

ECF 3.3/Helios. ECF 3.3 Release 2010 by Composent, Inc. and others, made available under the EPL v1.0

ECF 3.3/Helios. ECF 3.3 Release 2010 by Composent, Inc. and others, made available under the EPL v1.0 ECF 3.3/Helios Project Lead: Scott Lewis slewis@composent.com Dev Mailing List: ecf-dev@eclipse.org Home Page: http://www.eclipse.org/ecf Wiki: http://wiki.eclipse.org/ecf Project Plan: http://www.eclipse.org/projects/projectplan.php?projectid=rt.ecf

More information

innoq Deutschland GmbH innoq Schweiz GmbH D Ratingen CH-6330 Cham Tel Tel

innoq Deutschland GmbH innoq Schweiz GmbH D Ratingen CH-6330 Cham Tel Tel innoq Deutschland GmbH innoq Schweiz GmbH D-40880 Ratingen CH-6330 Cham Tel +49 2102 77 1620 Tel +41 41 743 01 11 www.innoq.com Stefan Tilkov, stefan.tilkov@innoq.com 1 Goals Introduce MDE, MDA, MDD, MDSD,...

More information

Under the Paul Fremantle, CTO, WSO2

Under the Paul Fremantle, CTO, WSO2 Under the Hood @WSO2 Paul Fremantle, CTO, WSO2 Paul Fremantle CTO and Co-Founder 10 years at IBM STSM in WebSphere Development Infoworld CTO 25 in 2008 VP, Apache Synapse Co-Chair, OASIS WSRX TC Why look

More information

ONOS Roadmap. September, 2017

ONOS Roadmap. September, 2017 ONOS Roadmap September, 2017 distributed core provides high-availability, scalability and performance abstractions & models allow applications to configure and control the network without becoming dependent

More information

Overview of Brunel University National Grid CIM Research Collaboration

Overview of Brunel University National Grid CIM Research Collaboration Brunel Institute of Power Systems Overview of Brunel University National Grid CIM Research Collaboration Gareth Taylor Brunel University Nigel Hargreaves CIM Users Group, Windsor May 17 th 2012 EngD Environmental

More information

Case Study: Dodging the Pitfalls of Enterprise Ajax Applications

Case Study: Dodging the Pitfalls of Enterprise Ajax Applications www.thinwire.com Case Study: Dodging the Pitfalls of Enterprise Ajax Applications A Quick Introduction: Joshua Gertzen Lead Architect of the ThinWire Ajax RIA Framework Core Technology Architect for CCS

More information

Area of Interest (AOI) to KML

Area of Interest (AOI) to KML Area of Interest (AOI) to KML The Integrated Land & Resource Registry (ILRR) offers a bit more functionality for Keyhole Markup Language (KML) creation and usage than Mineral Titles Online (MTO). Both

More information

OpenMDM Client Technologies Overview

OpenMDM Client Technologies Overview OpenMDM Client Technologies Overview Table of Contents 1. Technological Approach... 2 1.1. Full Web Stack... 2 1.2. Full Desktop Stack... 2 1.3. Web Stack with Device Helpers... 2 1.4. Shared Web and Desktop

More information

A c t i v e w o r k s p a c e f o r e x t e r n a l d a t a a g g r e g a t i o n a n d S e a r c h. 1

A c t i v e w o r k s p a c e f o r e x t e r n a l d a t a a g g r e g a t i o n a n d S e a r c h.   1 A c t i v e w o r k s p a c e f o r e x t e r n a l d a t a a g g r e g a t i o n a n d S e a r c h B a l a K a n t h i www.intelizign.com 1 Active workspace can search and visualize PLM data better! Problems:

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

European Network of Transmission System Operators for Electricity QUALITY OF CGMES DATASETS AND CALCULATIONS FOR SYSTEM OPERATIONS SECOND EDITION

European Network of Transmission System Operators for Electricity QUALITY OF CGMES DATASETS AND CALCULATIONS FOR SYSTEM OPERATIONS SECOND EDITION QUALITY OF CGMES DATASETS AND CALCULATIONS FOR SYSTEM OPERATIONS SECOND EDITION 12 OCTOBER 2016 PT COMMON GRID MODEL CGMES RELATED TOPICS Page 1 of 31 ENTSO-E AISBL Avenue Cortenbergh 100 1000 Brussels

More information

Quick tour of the Test and Performance Tools Platform (TPTP) Valentina Popescu IBM Tivoli TPTP AG Lead

Quick tour of the Test and Performance Tools Platform (TPTP) Valentina Popescu IBM Tivoli TPTP AG Lead Quick tour of the Test and Performance Tools Platform (TPTP) Valentina Popescu IBM Tivoli TPTP AG Lead 2006 by IBM; made available under the EPL v1.0 October 11, 2006 Agenda TPTP Overview TPTP Architecture

More information

Patterns and Best Practices for dynamic OSGi Applications

Patterns and Best Practices for dynamic OSGi Applications Patterns and Best Practices for dynamic OSGi Applications Kai Tödter, Siemens Corporate Technology Gerd Wütherich, Freelancer Martin Lippert, akquinet it-agile GmbH Agenda» Dynamic OSGi applications» Basics»

More information

EMC Documentum Composer

EMC Documentum Composer EMC Documentum Composer Version 6.0 SP1.5 User Guide P/N 300 005 253 A02 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com Copyright 2008 EMC Corporation. All

More information

A Software Developing Environment for Earth System Modeling. Depei Qian Beihang University CScADS Workshop, Snowbird, Utah June 27, 2012

A Software Developing Environment for Earth System Modeling. Depei Qian Beihang University CScADS Workshop, Snowbird, Utah June 27, 2012 A Software Developing Environment for Earth System Modeling Depei Qian Beihang University CScADS Workshop, Snowbird, Utah June 27, 2012 1 Outline Motivation Purpose and Significance Research Contents Technology

More information

A. ORA addresses all four (Business, Application, Information, and Technical) equally.

A. ORA addresses all four (Business, Application, Information, and Technical) equally. Volume: 176 Questions Question No : 1 Enterprise Architecture consists of Business Architecture, Application Architecture, Information, Architecture and Technical Architecture (BAIT). Which statement best

More information

Open Source egovernment Reference Architecture. Cory Casanave, President. Data Access Technologies, Inc.

Open Source egovernment Reference Architecture. Cory Casanave, President. Data Access Technologies, Inc. Open Source egovernment Reference Architecture Cory Casanave, President www.enterprisecomponent.com Slide 1 What we will cover OsEra OsEra Overview Model to Integrate From business model to execution Synthesis

More information

INTEROPERABILITY TEST CIM FOR SYSTEM DEVELOPMENT AND OPERATIONS 2016

INTEROPERABILITY TEST CIM FOR SYSTEM DEVELOPMENT AND OPERATIONS 2016 INTEROPERABILITY TEST CIM FOR SYSTEM DEVELOPMENT AND OPERATIONS 2016 15 July 2016 Foreword ENTSO-E conducted, along with European and American vendors and Transmission System Operators (TSOs), a common

More information

ATC An OSGI-based Semantic Information Broker for Smart Environments. Paolo Azzoni Research Project Manager

ATC An OSGI-based Semantic Information Broker for Smart Environments. Paolo Azzoni Research Project Manager An OSGI-based Semantic Information Broker for Smart Environments ATC 2011 ARTEMIS JU SP3 / 100017: Smart Objects For Intelligent Applications Paolo Azzoni Research Project Manager Summary Introduction

More information

Model handling with EMF

Model handling with EMF Model handling with EMF An introduction to the Eclipse Modeling Framework ATLAS group (INRIA & LINA), University of Nantes France http://www.sciences.univ-nantes.fr/lina/atl/!1 Context of this work The

More information

Building applications in less time. Eclipsecon France 2018

Building applications in less time. Eclipsecon France 2018 Building applications in less time Introduction to the Open Standard Business Platform (OSBP) Eclipsecon France 2018 Ralf Mollik, Compex Systemhaus GmbH, Heidelberg, Germany Our Vision Our values are:

More information

EMF Europa Simultaneous Release

EMF Europa Simultaneous Release EMF 2.3.0 Europa Simultaneous Release 6 June, 2007 Release Review revision 2.3.1 17 January, 2007 1 Europa Simultaneous Release 2007 by IBM Corporation, made available under the EPL v1.0 EMF - Europa Release

More information

SPECIFICATIONS FOR SCL(SUBSTATION CONFIGURATION LANGUAGE) MANAGER WITH HYDRO DATA MODELS A. GENERAL SPECIFICATIONS

SPECIFICATIONS FOR SCL(SUBSTATION CONFIGURATION LANGUAGE) MANAGER WITH HYDRO DATA MODELS A. GENERAL SPECIFICATIONS A. GENERAL SPECIFICATIONS A.1 General Conformance: The SCL (Substation Configuration Language) Manager configuration utility tool provided by the vender for configuring an IED( Intelligent Electronic Device)

More information

AD105 Introduction to Application Development for the IBM Workplace Managed Client

AD105 Introduction to Application Development for the IBM Workplace Managed Client AD105 Introduction to Application Development for the IBM Workplace Managed Client Rama Annavajhala, IBM Workplace Software, IBM Software Group Sesha Baratham, IBM Workplace Software, IBM Software Group

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

Getting the Most from Eclipse

Getting the Most from Eclipse Getting the Most from Eclipse Darin Swanson IBM Rational Portland, Oregon Darin_Swanson@us.ibm.com March 17, 2005 What is Eclipse An extensible tools platform Out-of-box function and quality to attract

More information

CISC836: Models in Software Development: Methods, Techniques and Tools

CISC836: Models in Software Development: Methods, Techniques and Tools CISC836: Models in Software Development: Methods, Techniques and Tools Topic 4: Code Generation with EMF Meta modeling Languages for meta models: Ecore Using EMF and Ecoreto define a data model Using EMF

More information

Eclipse-based Embedded Engineering Environments Inspired by AUTOSAR

Eclipse-based Embedded Engineering Environments Inspired by AUTOSAR Eclipse-based Embedded Engineering Environments Inspired by Stephan Eberle, Geensys 2008 by Geensys; made available under the EPL v1.0 March 19, 2008 About Stephan Eberle Paris, France Development lead

More information

SOA Security Patterns Tuesday, 26th October

SOA Security Patterns Tuesday, 26th October WSO2 Founded in 2005 by acknowledged leaders in XML, Web Services Technologies & Standards and Open Source Producing entire middleware platform 100% open source under Apache license Business model is to

More information

The same command line options are available on our per-machine installs as well.

The same command line options are available on our per-machine installs as well. Engage Configuration Installer Parameters You can pass command line parameters to the Engage setup executable. These parameters are helpful for unattended silent installs particularly when deploying to

More information

Oracle ADF: The technology behind project fusion. Lynn Munsinger Principal Product Manager Application Development Tools Oracle Corporation

Oracle ADF: The technology behind project fusion. Lynn Munsinger Principal Product Manager Application Development Tools Oracle Corporation Oracle ADF: The technology behind project fusion Lynn Munsinger Principal Product Manager Application Development Tools Oracle Corporation Agenda Application Development Framework (ADF) Overview Goals

More information

RESQML Editor/Validator Tool. User guide

RESQML Editor/Validator Tool. User guide RESQML Editor/Validator Tool User Guide For RESQML v2.0.1 RESQML Overview The RESQML standard facilitates data exchange among the many software applications used along the E&P subsurface workflow, which

More information

GStat 2.0: Grid Information System Status Monitoring

GStat 2.0: Grid Information System Status Monitoring Journal of Physics: Conference Series GStat 2.0: Grid Information System Status Monitoring To cite this article: Laurence Field et al 2010 J. Phys.: Conf. Ser. 219 062045 View the article online for updates

More information

Expeditor Client for Desktop. Client Platform Overview

Expeditor Client for Desktop. Client Platform Overview Expeditor for Desktop Platform Overview Expeditor for Desktop Introduction Understand the client platform provided by IBM Lotus Expeditor for Desktop platform Expeditor for Desktop Contents This presentation

More information

Advanced User Interface Programming Using the Eclipse Rich Client Platform

Advanced User Interface Programming Using the Eclipse Rich Client Platform Advanced User Interface Programming Using the Eclipse Rich Client Platform Tod Creasey IBM Canada Tod Creasey Advanced User Interface Programming Using the Eclipse Rich Client Platform Page 1 About the

More information

Android Sdk Setup For Windows 7 32 Bit Full Version

Android Sdk Setup For Windows 7 32 Bit Full Version Android Sdk Setup For Windows 7 32 Bit Full Version Android Sdk Tools Full Installer Free Download For Windows 7,8,Xp,Vista (32 Bit/ 64 Bit) Android Sdk tools latest version full installer free download

More information