Appending Variable-Structure to Modelica Models (WIP)

Size: px
Start display at page:

Download "Appending Variable-Structure to Modelica Models (WIP)"

Transcription

1 Appending Variable-Structure to Modelica Models (WIP) Daniel Gomez Esperon, Alexandra Mehlhase, Thomas Karbe Technische Universität Berlin Ernst-Reuter-Platz 7, Berlin, Germany {gomezesperon, a.mehlhase, ABSTRACT Modeling languages and tools support the development of large simulation models based on components from libraries. In particular model types it is desirable to change components during simulation for performance reasons or to change behavior. Variable-structure models provide a solution with the concept of modes describing sets of systems of equations and transitions between modes. Experimental tools exist, but their reusability is limited due to special languages or the need to implement each mode manually. This paper presents a methodology to append variable-structure simulation behavior to existing models implemented in common component-oriented languages by only defining local component exchanges. The prototypical tool MoVasE implements the proposed methodology and introduces a meta-model to hold the variable-structure information separated from the original models. Based on this information, necessary modes are generated automatically. The variable-structure simulation is executed as a series of conventional simulations. Author Keywords Variable-structure; object-oriented; methodology; Modelica extension; FMI; Eclipse Rich Client Platform. ACM Classification Keywords I.6.5 SIMULATION AND MODELING (Model Development): Modeling methodologies 1. INTRODUCTION Many technical and non-technical systems can be modeled through differential-algebraic equations, which describe the behavior of a system over time under certain conditions. Since reusability is desirable to build large simulation models, it is common practice to partition a model hierarchically into components that describe the behavior of parts of the system. Components can be connected with each other to form more complex components. Those can again be connected resulting in a simulation model built out of components. For instance, an electrical resistor model can be created which defines a type. We can create many resistor components in an electrical circuit model as instances of this type. Each instance has its own state. Further connections with a source or a capacitor may result in a simulation model. SCSC 2015, July 26-29, 2015, Chicago, IL, USA c 2015 Society for Modeling & Simulation International (SCS) Modelica (see is an objectoriented modeling language which allows the modeler to create models based on components from libraries. Simulation models can then be built by instantiating components and by connecting them. Real technical and non-technical systems often consist of different modules and undergo a sequence of different phases. Phases can be described by either one monolithic model covering all phases, often leading to complex systems of equations, or by separate models for each phase. Separate models usually are less complex and therefore beneficial to simulation performance and maintenance. The sequence of phases is often not manually manageable. Separate simulations for each phase are not feasible. With the ability to automatically switch between separate models for different phases during simulation, one can express many desirable effects. Models can change their level of detail, describe different behavior and even add or delete components. Models with such capability are called variable-structure models (VSM). A part of such a model that represents one phase is called mode. Switches between modes are called transitions. A mode switch is triggered by a guard based on the simulation state and requires the initialization of the succeeding mode. Each mode has its individual system of equations. The benefit of variable-structure models has been wellestablished [3, 4], but as of today commercial simulation environments cannot handle them in a sufficient manner. Only prototypes and experimental languages exist. MOSILA with its simulator MOSILAB [6] uses Statecharts-like [1] notations to describe variable-structure behavior. Language SOL [10] and the signal-flow-oriented Ptolemy II [8] are other examples of tools to handle variable-structure models. They are limited in their expressiveness or complexity of the models they can handle. An implementation in the specific language is required instead of reusing existing models or libraries. A language-independent approach to create and simulate variable-structure models is provided by the DySMo framework [2]. In this framework, the simulation of modes in various simulation tools is controlled with a Python script. The different modes of the variable-structure model can be implemented in any simulation environment. Transitions have to be described in a template. Each mode has to be created manually and has to be an executable simulation model. In the assumable case where behavior changes are necessary in

2 a few components only, the change affects a small part of the model only. Two nearly identical models have to be implemented as simulation-ready modes. The overhead of manually copied code is high and error-prone. Maintainability in terms of modifications in the unchanged part of each mode is reduced. In this paper, we pick up the idea of DySMo to implement and simulate modes in established languages. We introduce a new methodology to create necessary modes automatically by appending variable-structure behavior to existing simulation models based on component exchanges. Chapter 2 briefly introduces main challenges and solutions that occur when components are exchanged during simulation with focus on Modelica models. Chapter 3 describes the methodology, which uses a meta-model represented graphically [1, 5, 9] to describe the variable-structure behavior on the highest level. The methodology is explained with a simple RLC resonator example. In seven steps the process in terms of notation and meaning for a VSM is described. A short insight into background processes is given that enables a variable-structure simulation. In Chapter 4 we present the prototype MoVasE that implements this methodology based on Modelica and allows the developer to create and simulate variable-structure models graphically. Chapter 5 presents the conclusion and future work. 2. MAIN CHALLENGES IN EXCHANGING COMPONENTS Modelica s potential of creating complex models with the help of libraries is based on object-oriented features like components and hierarchy. Components do not have a fixed signal flow direction. The direction or causality is derived from the composition of components. This acausality improves reusability heavily. To simulate a model, the combination and hierarchical composition of components and their equations need to be flattened and causalized to one monolithic system of equations. The structural information in terms of components is lost. Our approach describes variable-structure simulation behavior at component level and not at equation level. This will lead to a fundamental change of the system of equations. To perform this change in the system of equations, we exchange components at the highest level and flatten and causalize later. When a component is exchanged with one of another type, the new component has to be adapted to its context in the hierarchical composition. Thus, the interfaces need to be the same. One way to handle this is inheritance. Our approach does not require inheritance between exchanging component types. With mappings we provide possibilities to handle cases where adapting is required. Considering the high level aspects of simulation models in general, initialization is a main challenge for a meaningful simulation [7]. When a VSM changes its mode and therefore its system of equations, another initialization for the new mode has to be executed. With this initialization, a continuous transition from one mode to another has to be ensured. The developer needs to consider some individual aspects of an initialization, but our approach aims to support a continuous transition with deducting default initialization proposals from the model s structure. 3. METHODOLOGY OF APPENDING VARIABLE- STRUCTURE BEHAVIOR When an existing, executable simulation model could benefit from structure-variability, it should be possible to append the desired behavior without the need for a complete reimplementation or redesign. In addition, only relevant types, e.g. with a different level of detail or behavior, should be provided as reimplementations. A library can be used as source. The development process and level of maintainability with wellestablished tools should remain untouched. Figure 1. Seven steps toward variable-structure behavior The proposed methodology describes how such an executable simulation model, the so-called master-model, can be extended into a variable-structure model, such that the mentioned requirements hold. Figure 1 shows the seven steps of the methodology. Figure 2. RLC resonator Each step will be described using the RLC resonator example shown in Figure 2. Here, r is a component with the type SimpleResistor, l an Inductor and c a Capacitor. The goal is to exchange component r : SimpleResistor with a component of

3 a different type during simulation. Exchanges are described with state diagrams locally and independently for each component that needs to be exchanged. In this example we only exchange one component but more exchanges are possible Parse and Analyze The first step is to parse the master-model and a set of reimplemented types. All models are parsed to an easily manipulable form, the so-called abstract syntax tree (AST). Figure 4. Container of exchangeable resistor types Figure 3. Master-model and reimplementation ASTs (simplified) An extract of relevant elements in the RLC example is shown in Figure 3: Model SimRLC is the executable model inside the master-model. Its components r, l, c use models SimpleResistor, Inductor and Capacitor as types. The Reimplementation provides a more detailed TempResistor model type that is used for the component exchange. The TempResistor has a temperature-dependent resistance while the simple one has a constant resistance. A temperature source could be included into the TempResistor model to investigate the Sim- RLC s temperature-dependent behavior at a critical state Exchangeable Types A container of exchangeable model types has to be defined. Only components from those sets of types will be interchangeable. An inheritance relation or any other relation between these types is not necessary. Figure 4 shows the type container Resistor as a state diagram, marking SimpleResistor and TempResistor as exchangeable types. Each node carries its model type AST representation Transition Types We then define transition types between these model types. A transition type restricts the possible component exchanges and introduces a basic initialization and mapping. Defaults and indicators on necessary initializations and mappings are derived. With the two transition types Temp => Simple and Simple => Temp shown in Figure 4 we can later describe exchanges of components of type SimpleResistor with components of type TempResistor and vice versa with default initializations and mappings. When creating a transition type, we analyze both exchangeable model types AST elements and provide information on how a component of the succeeding type can be adapted and initialized based on the type of the predecessor component. The analysis includes interfaces and the number of variables and parameters. The default case is to map variables with the same name and type and to initialize them with the last value of the variable in the predecessor component. In case of the Resistor type container, this means for the transition Simple => Temp: resistance, current and voltage are proposed to be mapped and initialized directly but the parameter temperature for the TempResistor has to be defined manually. Until this step, there is no change of behavior during simulation. All appended information targets type information and provides re-usability options for following component exchanges. In the next two steps, we introduce exchanges of components by exchange containers built on top of components in the master-model. Transition instances of heredefined transition types will be extended with triggers. These component containers will finally lead to variable-structure behavior. It is important to introduce variable-structure behavior at component level to exchange components of the same type in a different way. Variable-structure preparation is introduced at type level for re-useability Exchangeable Components For each component in the master-model, an exchangeable component container can be introduced. In a container, any type from an associated type container can be used to instantiate a new component that can be used for an exchange during simulation. The component container carries the component s AST element of the master-model while all components inside the container carry their model type s AST element. A state diagram is used to describe the component exchange. During simulation, one component of each container is included in the variable-structure model at a time. One component has to be marked as the initial component that is used for the initial mode. We declare component r : SimpleResistor of model SimRLC as an exchangeable component by introducing the exchangeable components container SimRLC.r in Figure 5. The previously defined type container includes the component s current type SimpleResistor and the alternative type TempResistor. Therefore, it is possible to change the type of component r to TempResistor during simulation.

4 Figure 5. Container of exchangeable resistor components 3.5. Transition Instances We instantiate one of the defined transition types from step 3.3. to declare that a component exchange will happen. The transition instance has to be refined for this exchange with component-specific triggers and initializations. Triggers can be time- or state-based, they can be combined logically. The mapping and initialization is supported by the transition type. They can be adjusted by any function or constant values. In Figure 5 with t1:simple => Temp we instantiate a transition named t1 from type Simple => Temp. A time-based trigger could be after 60 seconds of simulation time or statebased when current reaches one ampere. For initialization we use the default mapping of current and voltage with values from the predecessor component. In this case, we have to parametrize the temperature of the TempResistor manually. The other transition type Temp => Simple is not used in this example. At this point, we have the description for a variable-structure RLC resonator simulation where the resistor will change its simple behavior to a temperature-dependent one Mode Generation The manual part of appending variable-structure is completed. The following steps are executed automatically. In general, each possible combination of one component from each component container and the remains of the mastermodel s AST represents a mode in the VSM simulation. The exchange behavior described locally and independently in component containers is interpreted as a Statechart: each state diagram of a container represents a parallel state while hierarchy of states results from component containers inside a component that is exchanged in another container. We generate a graph of modes. Each mode is a set of components. One component from each component container is combined with the remains of the master-model s AST. Figure 6 indicates the process for a VSM with two component containers with three components each. Transitions between modes are derived from transitions inside component containers. Component containers provide the AST element from the master-model which the exchangeable component has to adapt to. With the mapping provided by the transition instance, a new component AST element can be adapted to the master-model s AST. Each mode carries a complete and simulation-ready AST that will be flattened, causalized and compiled. Figure 6. AST Mode generation For the first mode, all exchangeable components marked as initial will be used to generate the initial mode and the simulation-ready initial AST. All outgoing transitions from these initial components are explored to find new sets of components and to build subsequent modes and ASTs. Transitions between components are reused as transitions between modes. For each subsequent mode, the procedure is repeated. Loops are recognized and can be handled. For each generated mode, the AST is compiled the classic, non-structure-variable way to a Functional Mock-up Interface (FMI) package (see with solver included. In the RLC circuit example, we only defined one component container with two components and one transition inside. The two modes and a single transition in Figure 7 are generated. Figure 7. Generated modes 3.7. Variable-Structure Simulation The variable-structure simulation is realized by a sequence of classic, non-variable-structure FMI mode simulations. It starts with the initial mode and its initialization. During simulation of a mode, triggers from outgoing transitions are checked and the simulation is terminated when a condition is met. Results are stored and with help of the transition instances the subsequent mode is found and its initialization is executed. The subsequent mode is then simulated the same way until the stop time or a termination transition is reached. The mode generation and simulation are not supposed to be highly efficient, it is more a proof of the VSM design in the steps before.

5 An interface defines the communication to the meta-model layer. Language-dependent AST elements like components, model types and variables are encapsulated in meta-model objects. It is possible to plugin other language layers with parsers and compilers, as long as they are objected-oriented or a mapping to the meta-model can be found. To simulate VSMs of other languages, their language plug-in has to provide a possibility to compile models to the FMI standard. Figure 8. MoVasE - navigator and editor for component exchanges. 4. PROTOTYPE MOVASE - MODELICA VARIABLE- STRUCTURE EDITOR The MoVasE prototype provides a platform to research variable-structure model design. The tool assists the developer in appending variable-structure behavior to an existing component-based model according to the proposed methodology. It provides support to define sound transitions and to create executable modes which can be compiled to FMIcompliant models. The simulation is performed and controlled as a sequence of FMI mode simulations Technical Background The application consists of three layers: the user interface layer, the meta-model layer and the language layer. The main platform is the Java Eclipse 4 Rich Client Platform (see which supports separation and modularity with its plugin structure. The user interface layer consists of elements from the Standard Widget Toolkit (see Piccolo2D (see for state diagram visualizations and SWT XY Graph (see for result plots. The meta-model is designed with the Eclipse Modeling Framework (see to hold variable-structure information. Main information is the so-called Variable-Structure-Extension that consists of exchangeable type- and component-information such as mappings, initializations and triggers. Based on this information, the mode graph is derived and builds other key data in the model. The meta-model is coupled loosely with the language layer. All analysis algorithms work on the meta-model to be independent from a language. The language layer has to provide a parser, an AST representation with manipulation operations and FMI compilation capabilities. At this stage of development, the only available language layer plugin makes use of the open source JModelica (see platform as parser and compiler. For this reason, the prototype is limited to Modelica models at the moment. All AST manipulation operations are implemented manually as an addition to the JModelica features. javafmi (see serves as an interface to the FMI models and enables full simulation control directly in the application. The loose coupling of the language-layer is realized with Eclipse s plug-in architecture. MoVasE Main Plugin Meta-Model Layer Language Layer LOC Classes Methods Table 1. Metrics of hand-written code in MoVasE. Table 1 shows metrics for the MoVasE tool. The total lines of code (LOC), classes and methods give an impression of the complexity of the program. Used frameworks are not included in the statistics. The meta-model layer code is generated based on the 38 meta-model classes and their relations. Analysis algorithms are implemented in the main plugin Implementation of the Methodology Steps of the methodology are guided with the help of wizards. Each step produces an artifact which has dependencies on its predecessors. Each artifact can have several successors to provide different development branches. For example, based on one set of imported models, different type and component containers can be designed and simulated independently. Each artifact has its own editor. Figure 8 shows the project-based navigator on the left-hand side (section 1) with all artifacts and editors as tabs on the right-hand side (section 2). The visible editor represents the RLC circuit example in step 5 with its component container for an exchange of component resistor of type SimpleResistor with a component of type TempResistor. In Section 2.a the associated type container Resistor is visualized. Based on this container, the component SimpleResistor resistor from section 2.b can be dragged and dropped to the state diagram area 2.c to create a component container. A transition between the resistor component of type SimpleResistor to a component with type TempResistor is introduced. Details of each transition instance have to be described in tab Component Transitions in section 2.d. Mappings and initializations can be adjusted and at least one trigger has to be defined. Analyses in the background of each editing step provide hints on the soundness. Simulation results can be plotted and exported. 5. CONCLUSION, LIMITATIONS AND FUTURE WORK The methodology opens a way to improve existing simulation models with appending variable-structure features. A migration to a special language or an extension of a language is not necessary. The power of established languages is preserved while the complexity of variable-structure models in terms of the amount of modes and transitions is increased. The master-model is referenced and the variable-structure information appended. A change in the master-model would

6 affect all modes. The automatic mode generation distributes this change to all modes automatically. Appended variablestructure information remains untouched. Maintainability of the master-model is preserved. The prototypical tool MoVasE provides an experimental platform in which the meta-model and analysis algorithms can be developed. It can handle many type and component containers as well as state diagram descriptions of component exchanges much greater than shown in the RLC circuit example. The number of generated modes exceeds the amount of manually creatable modes easily. With transition types and their default mappings and initializations the effort to create transitions between components is reduced. This helps to automatically produce sound modes and transitions which are needed for a variable-structure simulation. A variable-structure simulation can be controlled and the result can be visualized. With one mode and different transitions to itself the methodology can be used to find parameter and initialization values. Although the platform is in an early stage, we could show that all steps of the methodology are applicable in a seamless way. The compilation to FMI and simulation is a convenient way to control the simulation of modes directly in Java. It is slow in comparison to the simulation of the model directly in the tool it was designed with. It is not the intention to provide a highperformance simulation environment, but rather to provide an investigation platform for VSM design. For efficient simulation, the mode generation should be delegated completely to a variable-structure compiler and simulator to handle the generation of different systems of equations and changes in a more efficient way. The meta-model provides a set of information such a compiler has to deal with. The methodology and the meta-model are designed to be used for different kinds of object-oriented and similar languages. To prove this, one of the next steps could be the import of Simulink (see models into the MoVasE tool with an additional language layer. One mode has to be described with one language layer. But modes based on different language layers could be combined because of the FMI compilation. More complex, parallel and hierarchic transitions in different component containers will be investigated. Triggers will be analyzed and evaluated before the simulations starts with the help of a lexical analyzer to detect simultaneous changes of components, conflicts or non-determinism. As a result, the generated mode graph in step 6 can be optimized to reduce the amount of generated modes and mode switches during simulation. Neighboring modes could differ in more than one component to handle the exchange of more than one component at once. Resulting variations of the initial model could be used for parallel simulation to identify suitable modes for a simulation period. Tests for the expected variable-structure behavior will be investigated to support the sound definition of triggers and transitions. The methodology could provide indications to extend existing libraries with reimplementations in order to provide easy-tohandle variable-structure types. An output of the prototype tool might also be a scalable notation for variable-structure models. REFERENCES 1. Harel, D. Statecharts: A visual formalism for complex systems. Science of computer programming 8, 3 (1987), Mehlhase, A. A Python framework to create and simulate models with variable structure in common simulation environments. Mathematical and Computer Modelling of Dynamical Systems 20, 6 (2013), Mehlhase, A., Gomez Esperon, D., Bergmann, J., and Merkle, M. An example of beneficial use of variable-structure modeling to enhance an existing rocket model. In Proc. of the 10th International Modelica Conference, Linköping University Electronic Press (2014), Nilsson, H., Peterson, J., and Hudak, P. Functional Hybrid Modeling from an Object-Oriented Perspective. In Proc. of the 1st International Workshop on Equation-Based Object-Oriented Languages and Tools, Springer-Verlag (2007), Nytsch-Geusen, C. The use of the UML within the modelling process of Modelica-models. In Proc. of the 1st International Workshop on Equation-Based Object-Oriented Languages and Tools, Springer-Verlag (2007), Nytsch-Geusen, C., Ernst, T., Nordwig, A., Schneider, P., Schwarz, P., Vetter, M., Wittwer, C., Holm, A., Nouidui, T., Leopold, J., Schmidt, G., Doll, U., and Mattes, A. MOSILAB: Development of a Modelica based generic simulation tool supporting model structural dynamics. In Proc. of the 4th International Modelica Conference, The Modelica Association (2005), Pantelides, C. C. The consistent initialization of differential-algebraic systems. SIAM Journal on Scientific and Statistical Computing 9, 2 (1988), Ptolemaeus, C., Ed. System Design, Modeling, and Simulation using Ptolemy II. Ptolemy.org, Schamai, W., Fritzson, P., Paredis, C., and Pop, A. Towards Unified System Modeling and Simulation with ModelicaML: Modeling of Executable Behavior Using Graphical Notations. In Proc. of the 7th International Modelica Conference, Linköping University Electronic Press (2009), Zimmer, D. Equation-based modeling of variable-structure systems. PhD thesis, Swiss Federal Institute of Technology, Zürich, 2010.

Variable Structure Modeling for Vehicle Refrigeration Applications

Variable Structure Modeling for Vehicle Refrigeration Applications Variable Structure Modeling for Vehicle Refrigeration Applications Imke Krüger Alexandra Mehlhase Gerhard Schmitz Hamburg University of Technology, Department of Technical Thermodynamics Denickestr. 17,

More information

An example of beneficial use of variable-structure modeling to enhance an existing rocket model

An example of beneficial use of variable-structure modeling to enhance an existing rocket model An example of beneficial use of variable-structure modeling to enhance an existing rocket model Alexandra Mehlhase Daniel Gomez Esperon Julien Bergmann Marcel Merkle Technical University of Berlin, Department

More information

Modeling Structural - Dynamics Systems in MODELICA/Dymola, MODELICA/Mosilab and AnyLogic

Modeling Structural - Dynamics Systems in MODELICA/Dymola, MODELICA/Mosilab and AnyLogic Modeling Structural - Dynamics Systems in MODELICA/Dymola, MODELICA/Mosilab and AnyLogic Günther Zauner 1,2, Daniel Leitner 3, Felix Breitenecker 1 1 Vienna University of Technology, Wiedner Hauptstr.

More information

This is the published version of a paper presented at IEEE PES General Meeting 2013.

This is the published version of a paper presented at IEEE PES General Meeting 2013. http://www.diva-portal.org This is the published version of a paper presented at IEEE PES General Meeting 2013. Citation for the original published paper: Vanfretti, L., Li, W., Bogodorova, T., Panciatici,

More information

Towards Unified System Modeling with the ModelicaML UML Profile

Towards Unified System Modeling with the ModelicaML UML Profile Towards Unified System Modeling with the ModelicaML UML Profile Adrian Pop, David Akhvlediani, Peter Fritzson Programming Environments Lab, Department of Computer and Information Science Linköping University,

More information

ModelicaML: Getting Started Issue April 2012

ModelicaML: Getting Started Issue April 2012 ModelicaML: Getting Started Issue 1.6.5 13. April 2012 Wladimir Schamai EADS Innovation Works (Hamburg, Germany) Linkoping University (Linkoping, Sweden) Abstract: This document provides a short introduction

More information

EMF Refactor: Specification and Application of Model Refactorings within the Eclipse Modeling Framework

EMF Refactor: Specification and Application of Model Refactorings within the Eclipse Modeling Framework EMF Refactor: Specification and Application of Model Refactorings within the Eclipse Modeling Framework Thorsten Arendt a, Florian Mantz b, Gabriele Taentzer a a Philipps-Universität Marburg, FB12 - Mathematics

More information

An Eclipse-based Integrated Environment for Developing Executable Structural Operational Semantics Specifications

An Eclipse-based Integrated Environment for Developing Executable Structural Operational Semantics Specifications SOS 2006 Preliminary Version An Eclipse-based Integrated Environment for Developing Executable Structural Operational Semantics Specifications Adrian Pop 1,2 Peter Fritzson 3 Programming Environments Laboratory

More information

On the link between Architectural Description Models and Modelica Analyses Models

On the link between Architectural Description Models and Modelica Analyses Models On the link between Architectural Description Models and Modelica Analyses Models Damien Chapon Guillaume Bouchez Airbus France 316 Route de Bayonne 31060 Toulouse {damien.chapon,guillaume.bouchez}@airbus.com

More information

Embedded software design with Polychrony

Embedded software design with Polychrony Embedded software design with Polychrony DATE 09 tutorial on Correct-by-Construction Embedded Software Synthesis: Formal Frameworks, Methodologies, and Tools Jean-Pierre Talpin, RIA List of contributors

More information

Modeling Kernel Language (MKL)

Modeling Kernel Language (MKL) Modeling Kernel Language (MKL) A formal and extensible approach to equation-based modeling languages Guest Talk, EECS, Chess, UC Berkeley February 17, 2011 Department of Computer and Information Science

More information

Flight Systems are Cyber-Physical Systems

Flight Systems are Cyber-Physical Systems Flight Systems are Cyber-Physical Systems Dr. Christopher Landauer Software Systems Analysis Department The Aerospace Corporation Computer Science Division / Software Engineering Subdivision 08 November

More information

The PEPA Eclipse Plug-in

The PEPA Eclipse Plug-in The PEPA Eclipse Plug-in A modelling, analysis and verification platform for PEPA Adam Duguid, Stephen Gilmore, Michael Smith and Mirco Tribastone Wednesday 01 December 2010 Abstract: This user manual

More information

Execution of UML State Machines Using Modelica

Execution of UML State Machines Using Modelica Execution of UML State Machines Using Modelica Wladimir Schamai 1, Uwe Pohlmann 2, Peter Fritzson 3, Christiaan J.J. Paredis 4, Philipp Helle 1, Carsten Strobel 1 1 EADS Innovation Works, Germany 2 University

More information

A Visual Editor for Reconfigurable Object Nets based on the ECLIPSE Graphical Editor Framework

A Visual Editor for Reconfigurable Object Nets based on the ECLIPSE Graphical Editor Framework A Visual Editor for Reconfigurable Object Nets based on the ECLIPSE Graphical Editor Framework Enrico Biermann, Claudia Ermel, Frank Hermann and Tony Modica Technische Universität Berlin, Germany {enrico,lieske,frank,modica}@cs.tu-berlin.de

More information

A Solver-Independent Platform for Modeling Constrained Objects Involving Discrete and Continuous Domains

A Solver-Independent Platform for Modeling Constrained Objects Involving Discrete and Continuous Domains A Solver-Independent Platform for Modeling Constrained Objects Involving Discrete and Continuous Domains Ricardo Soto 1,2 and Laurent Granvilliers 1 1 LINA, CNRS, Université de Nantes, France 2 Escuela

More information

Open XML Requirements Specifications, a Xylia based application

Open XML Requirements Specifications, a Xylia based application Open XML Requirements Specifications, a Xylia based application Naeim Semsarilar Dennis K. Peters Theodore S. Norvell Faculty of Engineering and Applied Science Memorial University of Newfoundland November

More information

An Overview of the SysML-Modelica Transformation Specification

An Overview of the SysML-Modelica Transformation Specification An Overview of the SysML-Modelica Transformation Specification Christiaan J.J. Paredis 1, Yves Bernard 2, Roger M Burkhart 3. Hans-Peter de Koning 4, Sanford Friedenthal 5, Peter Fritzson 6, Nicolas F

More information

CIS 1.5 Course Objectives. a. Understand the concept of a program (i.e., a computer following a series of instructions)

CIS 1.5 Course Objectives. a. Understand the concept of a program (i.e., a computer following a series of instructions) By the end of this course, students should CIS 1.5 Course Objectives a. Understand the concept of a program (i.e., a computer following a series of instructions) b. Understand the concept of a variable

More information

challenges in domain-specific modeling raphaël mannadiar august 27, 2009

challenges in domain-specific modeling raphaël mannadiar august 27, 2009 challenges in domain-specific modeling raphaël mannadiar august 27, 2009 raphaël mannadiar challenges in domain-specific modeling 1/59 outline 1 introduction 2 approaches 3 debugging and simulation 4 differencing

More information

MODELLING COMPOSITIONS OF MODULAR EMBEDDED SOFTWARE PRODUCT LINES

MODELLING COMPOSITIONS OF MODULAR EMBEDDED SOFTWARE PRODUCT LINES MODELLING COMPOSITIONS OF MODULAR EMBEDDED SOFTWARE PRODUCT LINES Wolfgang Friess AUDI AG wolfgang.friess@audi.de Julio Sincero University Erlangen-Nuernberg sincero@informatik.uni-erlangen.de Wolfgang

More information

Keywords: Abstract Factory, Singleton, Factory Method, Prototype, Builder, Composite, Flyweight, Decorator.

Keywords: Abstract Factory, Singleton, Factory Method, Prototype, Builder, Composite, Flyweight, Decorator. Comparative Study In Utilization Of Creational And Structural Design Patterns In Solving Design Problems K.Wseem Abrar M.Tech., Student, Dept. of CSE, Amina Institute of Technology, Shamirpet, Hyderabad

More information

Compositional Model Based Software Development

Compositional Model Based Software Development Compositional Model Based Software Development Prof. Dr. Bernhard Rumpe http://www.se-rwth.de/ Seite 2 Our Working Groups and Topics Automotive / Robotics Autonomous driving Functional architecture Variability

More information

Object-Oriented Theories for Model Driven Architecture

Object-Oriented Theories for Model Driven Architecture Object-Oriented Theories for Model Driven Architecture Tony Clark 1, Andy Evans 2, Robert France 3 1 King s College London, UK, anclark@dcs.kcl.ac.uk, 2 University of York, UK, andye@cs.york.ac.uk, 3 University

More information

Prototyping Navigation in Web-Based Information Systems Using WebML

Prototyping Navigation in Web-Based Information Systems Using WebML Prototyping Navigation in Web-Based Information Systems Using WebML Jaroslav KURUC 1, Peter DOLOG 2 and Mária BIELIKOVÁ 1 1 Institute of Informatics and Software Engineering, Faculty of Informatics and

More information

Spoofax: An Extensible, Interactive Development Environment for Program Transformation with Stratego/XT

Spoofax: An Extensible, Interactive Development Environment for Program Transformation with Stratego/XT Spoofax: An Extensible, Interactive Development Environment for Program Transformation with Stratego/XT Karl Trygve Kalleberg 1 Department of Informatics, University of Bergen, P.O. Box 7800, N-5020 BERGEN,

More information

Translation of Modelica Code into Hybrid Automata

Translation of Modelica Code into Hybrid Automata Research Project Madhumitha Hariharan Translation of Modelica Code into Hybrid Automata December 15, 2016 supervised by: Prof. Dr. Sibylle Schupp Mr. Timo Kamph Hamburg University of Technology (TUHH)

More information

Reflective Design Patterns to Implement Fault Tolerance

Reflective Design Patterns to Implement Fault Tolerance Reflective Design Patterns to Implement Fault Tolerance Luciane Lamour Ferreira Cecília Mary Fischer Rubira Institute of Computing - IC State University of Campinas UNICAMP P.O. Box 676, Campinas, SP 3083-970

More information

Formal editing: jedit-mmt. Narrative editing: LaTeX-MMT. Browsing: MMT web server. Building: MMT scripting language. The MMT API: A Generic MKM System

Formal editing: jedit-mmt. Narrative editing: LaTeX-MMT. Browsing: MMT web server. Building: MMT scripting language. The MMT API: A Generic MKM System The MMT API: A Generic MKM System Florian Rabe MMT is foundation-independent: 1. Developer defines new logic 2. MMT yields complete MKM system for it MMT is application-independent: No single MMT application

More information

Definition of Visual Language Editors Using Declarative Languages

Definition of Visual Language Editors Using Declarative Languages Definition of Visual Language Editors Using Declarative Languages Torbjörn Lundkvist TUCS Turku Centre for Computer Science SoSE Graduate School on Software Systems and Engineering Department of Information

More information

An Annotation Tool for Semantic Documents

An Annotation Tool for Semantic Documents An Annotation Tool for Semantic Documents (System Description) Henrik Eriksson Dept. of Computer and Information Science Linköping University SE-581 83 Linköping, Sweden her@ida.liu.se Abstract. Document

More information

Behavioral Model Composition in Simulation-Based Design

Behavioral Model Composition in Simulation-Based Design Behavioral Model Composition in Simulation-Based Design Rajarishi Sinha 1, Student Member, IEEE, Christiaan J.J. Paredis 1,2, Member, IEEE, and Pradeep K. Khosla 1,2, Fellow, IEEE 1 Institute for Complex

More information

Generating system documentation augmented with traceability information, using a central XML-based repository

Generating system documentation augmented with traceability information, using a central XML-based repository Generating system documentation augmented with traceability information, using a central XML-based repository Master s thesis presentation Thomas U. Kraus Department of Software Engineering Faculty of

More information

SIMULATOR TO FMU: A PYTHON UTILITY TO SUPPORT BUILDING SIMULATION TOOL INTEROPERABILITY

SIMULATOR TO FMU: A PYTHON UTILITY TO SUPPORT BUILDING SIMULATION TOOL INTEROPERABILITY 2018 Building Performance Analysis Conference and SimBuild co-organized by ASHRAE and IBPSA-USA Chicago, IL September 26-28, 2018 SIMULATOR TO FMU: A PYTHON UTILITY TO SUPPORT BUILDING SIMULATION TOOL

More information

The use of the UML within the modelling process of Modelica-models

The use of the UML within the modelling process of Modelica-models The use of the UML within the modelling process of Modelica-models Christoph Nytsch-Geusen 1 1 Fraunhofer Institute for Computer Architecture and Software Technology, Kekuléstr. 7, 12489 Berlin, Germany

More information

EMF Metrics: Specification and Calculation of Model Metrics within the Eclipse Modeling Framework

EMF Metrics: Specification and Calculation of Model Metrics within the Eclipse Modeling Framework EMF Metrics: Specification and Calculation of Model Metrics within the Eclipse Modeling Framework Thorsten Arendt a, Pawel Stepien a, Gabriele Taentzer a a Philipps-Universität Marburg, FB12 - Mathematics

More information

Rapid Prototyping with APICES

Rapid Prototyping with APICES Rapid Prototyping with APICES Ansgar Bredenfeld GMD Institute for System Design Technology D-53754 Sankt Augustin, Germany bredenfeld@gmd.de http://set.gmd.de/apices APICES is a tool for very rapid development

More information

Utilizing a Common Language as a Generative Software Reuse Tool

Utilizing a Common Language as a Generative Software Reuse Tool Utilizing a Common Language as a Generative Software Reuse Tool Chris Henry and Stanislaw Jarzabek Department of Computer Science School of Computing, National University of Singapore 3 Science Drive,

More information

HOW AND WHEN TO FLATTEN JAVA CLASSES?

HOW AND WHEN TO FLATTEN JAVA CLASSES? HOW AND WHEN TO FLATTEN JAVA CLASSES? Jehad Al Dallal Department of Information Science, P.O. Box 5969, Safat 13060, Kuwait ABSTRACT Improving modularity and reusability are two key objectives in object-oriented

More information

TERRA support for architecture modeling. K.J. (Karim) Kok. MSc Report. C e Dr.ir. J.F. Broenink Z. Lu, MSc Prof.dr.ir. A. Rensink.

TERRA support for architecture modeling. K.J. (Karim) Kok. MSc Report. C e Dr.ir. J.F. Broenink Z. Lu, MSc Prof.dr.ir. A. Rensink. TERRA support for architecture modeling K.J. (Karim) Kok MSc Report C e Dr.ir. J.F. Broenink Z. Lu, MSc Prof.dr.ir. A. Rensink August 2016 040RAM2016 EE-Math-CS P.O. Box 217 7500 AE Enschede The Netherlands

More information

Towards Run-time Debugging of Equation-based Object-oriented Languages

Towards Run-time Debugging of Equation-based Object-oriented Languages Towards Run-time Debugging of Equation-based Object-oriented Languages Adrian Pop and Peter Fritzson Programming Environments Laboratory Department of Computer and Information cience Linköping University

More information

Open PROMOL: An Experimental Language for Target Program Modification

Open PROMOL: An Experimental Language for Target Program Modification Open PROMOL: An Experimental Language for Target Program Modification Vytautas Štuikys, Robertas Damaševičius, Giedrius Ziberkas Software Engineering Department, Kaunas University of Technology Studentų

More information

Static Safety Analysis of UML Action Semantics for Critical Systems Development

Static Safety Analysis of UML Action Semantics for Critical Systems Development Static Safety Analysis of UML Action Semantics for Critical Systems Development Zsigmond Pap, Dániel Varró Dept. of Measurement and Information Systems Budapest University of Technology and Economics H-1521

More information

Impact of Dependency Graph in Software Testing

Impact of Dependency Graph in Software Testing Impact of Dependency Graph in Software Testing Pardeep Kaur 1, Er. Rupinder Singh 2 1 Computer Science Department, Chandigarh University, Gharuan, Punjab 2 Assistant Professor, Computer Science Department,

More information

Aspect-Orientation from Design to Code

Aspect-Orientation from Design to Code Aspect-Orientation from Design to Code Iris Groher Siemens AG, CT SE 2 Otto-Hahn-Ring 6 81739 Munich, Germany groher@informatik.tu-darmstadt.de Thomas Baumgarth Siemens AG, CT SE 2 Otto-Hahn-Ring 6 81739

More information

DEPARTMENT OF COMPUTER SCIENCE

DEPARTMENT OF COMPUTER SCIENCE Department of Computer Science 1 DEPARTMENT OF COMPUTER SCIENCE Office in Computer Science Building, Room 279 (970) 491-5792 cs.colostate.edu (http://www.cs.colostate.edu) Professor L. Darrell Whitley,

More information

Accessibility. EEC 521: Software Engineering. Classes and Objects. Inheritance. Classes and Objects (OO Analysis)

Accessibility. EEC 521: Software Engineering. Classes and Objects. Inheritance. Classes and Objects (OO Analysis) Accessibility EEC 521: Software Engineering Classes and Objects (OO Analysis) Attributes and Methods can be declared at three levels of accessibility Public (+) Visible everywhere Private (-) Visible only

More information

AN INTEGRATED MODELICA ENVIRONMENT FOR MODELING, DOCUMENTATION AND SIMULATION

AN INTEGRATED MODELICA ENVIRONMENT FOR MODELING, DOCUMENTATION AND SIMULATION Accepted for publication in Proceedings of The 1998 Summer Computer Simulation Conference (SCSC '98) July 19-22, 1998, Reno, Nevada AN INTEGRATED MODELICA ENVIRONMENT FOR MODELING, DOCUMENTATION AND SIMULATION

More information

RIGOROUSLY AUTOMATING TRANSFORMATIONS OF UML BEHAVIOR MODELS

RIGOROUSLY AUTOMATING TRANSFORMATIONS OF UML BEHAVIOR MODELS RIGOROUSLY AUTOMATING TRANSFORMATIONS OF UML BEHAVIOR MODELS Jon Whittle 1, João Araújo 2, Ambrosio Toval 3, and Jose Luis Fernández Alemán 3 1 QSS / NASA Ames Research Center, M/S 269-2, Moffett Field,

More information

AADL Graphical Editor Design

AADL Graphical Editor Design AADL Graphical Editor Design Peter Feiler Software Engineering Institute phf@sei.cmu.edu Introduction An AADL specification is a set of component type and implementation declarations. They are organized

More information

Transforming UML Collaborating Statecharts for Verification and Simulation

Transforming UML Collaborating Statecharts for Verification and Simulation Transforming UML Collaborating Statecharts for Verification and Simulation Patrick O. Bobbie, Yiming Ji, and Lusheng Liang School of Computing and Software Engineering Southern Polytechnic State University

More information

Eclipse as a Web 2.0 Application Position Paper

Eclipse as a Web 2.0 Application Position Paper Eclipse Summit Europe Server-side Eclipse 11 12 October 2006 Eclipse as a Web 2.0 Application Position Paper Automatic Web 2.0 - enabling of any RCP-application with Xplosion Introduction If todays Web

More information

MapleSim User's Guide

MapleSim User's Guide MapleSim User's Guide Copyright Maplesoft, a division of Waterloo Maple Inc. 2001-2009 MapleSim User's Guide Copyright Maplesoft, MapleSim, and Maple are all trademarks of Waterloo Maple Inc. Maplesoft,

More information

Design Document CDT Remote Search/Index Framework. Chris Recoskie Vivian Kong Mike Kucera Jason Montojo. IBM Corporation

Design Document CDT Remote Search/Index Framework. Chris Recoskie Vivian Kong Mike Kucera Jason Montojo. IBM Corporation Design Document CDT Remote Search/Index Framework Chris Recoskie Vivian Kong Mike Kucera Jason Montojo IBM Corporation Page 1 of 26 1 Introduction 1.1 Purpose The purpose of this document is to describe

More information

CASE TOOLS LAB VIVA QUESTION

CASE TOOLS LAB VIVA QUESTION 1. Define Object Oriented Analysis? VIVA QUESTION Object Oriented Analysis (OOA) is a method of analysis that examines requirements from the perspective of the classes and objects found in the vocabulary

More information

SERG. Spoofax: An Extensible, Interactive Development Environment for Program Transformation with Stratego/XT

SERG. Spoofax: An Extensible, Interactive Development Environment for Program Transformation with Stratego/XT Delft University of Technology Software Engineering Research Group Technical Report Series Spoofax: An Extensible, Interactive Development Environment for Program Transformation with Stratego/XT Karl Trygve

More information

Advanced modeling and simulation techniques in MOSILAB: A system development case study

Advanced modeling and simulation techniques in MOSILAB: A system development case study Advanced modeling and simulation techniques in MOSILAB: A system development case study Christoph Nytsch-Geusen 1 Thilo Ernst 1 André Nordwig 1 Peter Schwarz 2 Peter Schneider 2 Matthias Vetter 3 Christof

More information

Design Pattern What is a Design Pattern? Design Pattern Elements. Almas Ansari Page 1

Design Pattern What is a Design Pattern? Design Pattern Elements. Almas Ansari Page 1 What is a Design Pattern? Each pattern Describes a problem which occurs over and over again in our environment,and then describes the core of the problem Novelists, playwrights and other writers rarely

More information

UML for Real-Time Overview

UML for Real-Time Overview Abstract UML for Real-Time Overview Andrew Lyons April 1998 This paper explains how the Unified Modeling Language (UML), and powerful modeling constructs originally developed for the modeling of complex

More information

iserver Free Archimate ArchiMate 1.0 Template Stencil: Getting from Started Orbus Guide Software Thanks for Downloading the Free ArchiMate Template! Orbus Software have created a set of Visio ArchiMate

More information

CSSE 490 Model-Based Software Engineering: Software Factories

CSSE 490 Model-Based Software Engineering: Software Factories CSSE 490 Model-Based Software Engineering: Software Factories Shawn Bohner Office: Moench Room F212 Phone: (812) 877-8685 Email: bohner@rose-hulman.edu Learning Outcomes: MBE Discipline Relate Model-Based

More information

THE DESIGN ENVIRONMENT FOR HETEROGENEOUS SYSTEMS

THE DESIGN ENVIRONMENT FOR HETEROGENEOUS SYSTEMS THE DESIGN ENVIRONMENT FOR HETEROGENEOUS SYSTEMS SystemC / SystemC AMS based Simulation and Modeling Technologies Outline COSIDE Today COSIDE 2.0 COSIDE Future 2 Management Summary Combination of analog

More information

A New Generation PEPA Workbench

A New Generation PEPA Workbench A New Generation PEPA Workbench Mirco Tribastone Stephen Gilmore Abstract We present recent developments on the implementation of a new PEPA Workbench, a cross-platform application for editing, analysing,

More information

The Public Shared Objects Run-Time System

The Public Shared Objects Run-Time System The Public Shared Objects Run-Time System Stefan Lüpke, Jürgen W. Quittek, Torsten Wiese E-mail: wiese@tu-harburg.d400.de Arbeitsbereich Technische Informatik 2, Technische Universität Hamburg-Harburg

More information

The Cantor Handbook. Alexander Rieder

The Cantor Handbook. Alexander Rieder Alexander Rieder 2 Contents 1 Introduction 5 2 Using Cantor 6 2.1 Cantor features....................................... 6 2.2 The Cantor backends.................................... 7 2.3 The Cantor Workspace...................................

More information

Future Directions in Simulation Modeling. C. Dennis Pegden

Future Directions in Simulation Modeling. C. Dennis Pegden Future Directions in Simulation Modeling C. Dennis Pegden Outline A half century of progress. Where do we need to go from here? How do we get there? Simulation: A Compelling Technology See the future Visualize

More information

Dynamic structure modelling for Causal Block Diagrams. Master Thesis by Yves Maris Promotors: Fernando Barros, Hans Vangheluwe

Dynamic structure modelling for Causal Block Diagrams. Master Thesis by Yves Maris Promotors: Fernando Barros, Hans Vangheluwe Dynamic structure modelling for Causal Block Diagrams Master Thesis by Yves Maris Promotors: Fernando Barros, Hans Vangheluwe 1 Overview Background: Causal Block Diagrams Syntax Semantics Problem statement

More information

Generation of Functional Mock-up Units from Causal Block Diagrams

Generation of Functional Mock-up Units from Causal Block Diagrams Generation of Functional Mock-up Units from Causal Block Diagrams Bavo Vander Henst University of Antwerp Model Driven Engineering Bavo.VanderHenst@student.uantwerpen.be Abstract The purpose of this paper

More information

Managing Model and Meta-Model Components with Export and Import Interfaces

Managing Model and Meta-Model Components with Export and Import Interfaces Managing Model and Meta-Model Components with Export and Import Interfaces Daniel Strüber, Stefan Jurack, Tim Schäfer, Stefan Schulz, Gabriele Taentzer Philipps-Universität Marburg, Germany, {strueber,sjurack,timschaefer,schulzs,taentzer}

More information

3.4 Data-Centric workflow

3.4 Data-Centric workflow 3.4 Data-Centric workflow One of the most important activities in a S-DWH environment is represented by data integration of different and heterogeneous sources. The process of extract, transform, and load

More information

... is a Programming Environment (PE)?... is Generic Language Technology (GLT)?

... is a Programming Environment (PE)?... is Generic Language Technology (GLT)? Introduction to Generic Language Technology Today Mark van den Brand Paul Klint Jurgen Vinju Tools for software analysis and manipulation Programming language independent (parametric) The story is from

More information

News in RSA-RTE CP1

News in RSA-RTE CP1 IBM Software Group News in RSA-RTE 8.5.1 CP1 Mattias Mohlin, April 2013 2013 IBM Corporation Build A C++ External Library TC can now generate the make file to use for building the library from a CDT project

More information

Dominique Blouin Etienne Borde

Dominique Blouin Etienne Borde Dominique Blouin Etienne Borde dominique.blouin@telecom-paristech.fr etienne.borde@telecom-paristech.fr Institut Mines-Télécom Content Domain specific Languages in a Nutshell Overview of Eclipse Modeling

More information

12 The PEPA Plug-in for Eclipse

12 The PEPA Plug-in for Eclipse 12 The PEPA Plug-in for Eclipse In this lecture note we introduce the tool support which is available when modelling with PEPA. Undertaking modelling studies of any reasonable size is only possible if

More information

EXPRESSING REQUIREMENTS IN MODELICA

EXPRESSING REQUIREMENTS IN MODELICA EXPRESSING REQUIREMENTS IN MODELICA Lena Buffoni and Peter Fritzson Linköping University SE-581 83 Linköping Sweden ABSTRACT As cyber-physical systems grow increasingly complex, the need for methodologies

More information

UNIT I. 3. Write a short notes on process view of 4+1 architecture. 4. Why is object-oriented approach superior to procedural approach?

UNIT I. 3. Write a short notes on process view of 4+1 architecture. 4. Why is object-oriented approach superior to procedural approach? Department: Information Technology Questions Bank Class: B.E. (I.T) Prof. Bhujbal Dnyaneshwar K. Subject: Object Oriented Modeling & Design dnyanesh.bhujbal11@gmail.com ------------------------------------------------------------------------------------------------------------

More information

Object-Oriented Programming

Object-Oriented Programming Object-Oriented Programming 3/18/14 Presentation for use with the textbook Data Structures and Algorithms in Java, 6th edition, by M. T. Goodrich, R. Tamassia, and M. H. Goldwasser, Wiley, 2014 Object-Oriented

More information

Pattern composition in graph transformation rules

Pattern composition in graph transformation rules Pattern composition in graph transformation rules András Balogh and Dániel Varró Department of Measurement and Information Systems Budapest University of Technology and Economics H-1117 Magyar tudosok

More information

Programmazione. Prof. Marco Bertini

Programmazione. Prof. Marco Bertini Programmazione Prof. Marco Bertini marco.bertini@unifi.it http://www.micc.unifi.it/bertini/ Introduction Why OO Development? Improved structure of software easier to: Understand Maintain Enhance Reusable

More information

GENERATING A MODELICA COMPILER FROM NATURAL SEMANTICS SPECIFICATIONS

GENERATING A MODELICA COMPILER FROM NATURAL SEMANTICS SPECIFICATIONS Accepted for publication in Proceedings of The 1998 Summer Computer Simulation Conference (SCSC '98) July 19-22, 1998, Reno, Nevada GENERATING A MODELICA COMPILER FROM NATURAL SEMANTICS SPECIFICATIONS

More information

Idioms and Design Patterns. Martin Skogevall IDE, Mälardalen University

Idioms and Design Patterns. Martin Skogevall IDE, Mälardalen University Idioms and Design Patterns Martin Skogevall IDE, Mälardalen University 2005-04-07 Acronyms Object Oriented Analysis and Design (OOAD) Object Oriented Programming (OOD Software Design Patterns (SDP) Gang

More information

Matrex Table of Contents

Matrex Table of Contents Matrex Table of Contents Matrex...1 What is the equivalent of a spreadsheet in Matrex?...2 Why I should use Matrex instead of a spreadsheet application?...3 Concepts...4 System architecture in the future

More information

IMPACT OF DEPENDENCY GRAPH IN SOFTWARE TESTING

IMPACT OF DEPENDENCY GRAPH IN SOFTWARE TESTING IMPACT OF DEPENDENCY GRAPH IN SOFTWARE TESTING Pardeep kaur 1 and Er. Rupinder Singh 2 1 Research Scholar, Dept. of Computer Science and Engineering, Chandigarh University, Gharuan, India (Email: Pardeepdharni664@gmail.com)

More information

Topics in Object-Oriented Design Patterns

Topics in Object-Oriented Design Patterns Software design Topics in Object-Oriented Design Patterns Material mainly from the book Design Patterns by Erich Gamma, Richard Helm, Ralph Johnson and John Vlissides; slides originally by Spiros Mancoridis;

More information

- - PARADISE: Design Environment for Parallel & Distributed, Embedded Real-Time

- - PARADISE: Design Environment for Parallel & Distributed, Embedded Real-Time PARADISE: Design Environment for Parallel & Distributed, Embedded Real-Time - - Systems W.Hardt, P. Altenbernd, C. Bake, G. Del Castillo, C. Ditze, E.Erpenbach, U. Glasser, B. Kleinjohann, G. Lehrenfeld,

More information

Component-Based Technologies for End-User Development

Component-Based Technologies for End-User Development Paper to be published in Communications of the ACM, special issue on End-User Development, Sept. 2004 Component-Based Technologies for End-User Development Anders I. Mørch 1, Gunnar Stevens 2, Markus Won

More information

SysML and FMI in INTO-CPS

SysML and FMI in INTO-CPS Grant Agreement: 644047 Integrated Tool chain for model-based design of CPSs SysML and FMI in Deliverable Number: D4.1c Version: 0.7 Date: 2015 Public Document www.into-cps.au.dk D4.1c SysML and FMI in

More information

AGG: A Graph Transformation Environment for Modeling and Validation of Software

AGG: A Graph Transformation Environment for Modeling and Validation of Software AGG: A Graph Transformation Environment for Modeling and Validation of Software Gabriele Taentzer Technische Universität Berlin, Germany gabi@cs.tu-berlin.de Abstract. AGG is a general development environment

More information

New Programming Paradigms

New Programming Paradigms New Programming Paradigms Lecturer: Pánovics János (google the name for further details) Requirements: For signature: classroom work and a 15-minute presentation Exam: written exam (mainly concepts and

More information

A Lightweight Language for Software Product Lines Architecture Description

A Lightweight Language for Software Product Lines Architecture Description A Lightweight Language for Software Product Lines Architecture Description Eduardo Silva, Ana Luisa Medeiros, Everton Cavalcante, Thais Batista DIMAp Department of Informatics and Applied Mathematics UFRN

More information

1 Although other ways of exporting like using the 2 s 1

1 Although other ways of exporting like using the 2 s 1 A Novel Proposal on how to Parameterize Models in Dymola Utilizing External Files under Consideration of a Subsequent Model Export using the Functional Mock-Up Interface Thomas Schmitt 1 Markus Andres

More information

A Type Graph Model for Java Programs

A Type Graph Model for Java Programs A Type Graph Model for Java Programs Arend Rensink and Eduardo Zambon Formal Methods and Tools Group, EWI-INF, University of Twente PO Box 217, 7500 AE, Enschede, The Netherlands {rensink,zambon}@cs.utwente.nl

More information

Anticipatory Shifting Optimization of a Transmission Control Unit for an Automatic Transmission through Advanced Driver Assistance Systems

Anticipatory Shifting Optimization of a Transmission Control Unit for an Automatic Transmission through Advanced Driver Assistance Systems Anticipatory Shifting Optimization of a Transmission Control Unit for an Automatic Transmission through Advanced Driver Assistance Systems Salim Chaker 1 Michael Folie 2 Christian Kehrer 1 Frank Huber

More information

THE DESIGNER'S GUIDE TO VERILOG-AMS First Edition June 2004

THE DESIGNER'S GUIDE TO VERILOG-AMS First Edition June 2004 THE DESIGNER'S GUIDE TO VERILOG-AMS First Edition June 2004 KENNETH S. KUNDERT Cadence Design Systems OLAF ZINKE Cadence Design Systems k4 Kluwer Academic Publishers Boston/Dordrecht/London Chapter 1 Introduction

More information

5/9/2014. Recall the design process. Lecture 1. Establishing the overall structureof a software system. Topics covered

5/9/2014. Recall the design process. Lecture 1. Establishing the overall structureof a software system. Topics covered Topics covered Chapter 6 Architectural Design Architectural design decisions Architectural views Architectural patterns Application architectures Lecture 1 1 2 Software architecture The design process

More information

Classes and Inheritance in Actor- Oriented Models

Classes and Inheritance in Actor- Oriented Models Classes and Inheritance in Actor- Oriented Models Stephen Neuendorffer Edward Lee UC Berkeley Chess Review May 8, 2003 Berkeley, CA Introduction Component-based design Object-oriented components Actor-oriented

More information

13 AutoFocus 3 - A Scientific Tool Prototype for Model-Based Development of Component-Based, Reactive, Distributed Systems

13 AutoFocus 3 - A Scientific Tool Prototype for Model-Based Development of Component-Based, Reactive, Distributed Systems 13 AutoFocus 3 - A Scientific Tool Prototype for Model-Based Development of Component-Based, Reactive, Distributed Systems Florian Hölzl and Martin Feilkas Institut für Informatik Technische Universität

More information

Static analysis and testing of executable DSL specification

Static analysis and testing of executable DSL specification Static analysis and testing of executable DSL specification Qinan Lai 1, Andy Carpenter 1 1 School of Computer Science, the University of Manchester, Manchester, UK {laiq,afc}@cs.man.ac.uk Keywords: Abstract:

More information

Object-Oriented Modeling with Rand Model Designer

Object-Oriented Modeling with Rand Model Designer Object-Oriented Modeling with Rand Model Designer Yu. B. Kolesov 1 Yu. B. Senichenkov 2 1 Mv Soft, Russia, ybk2@mail.ru 2 Institute of Computer Science and Technology, Peter the Great St. Petersburg Polytechnic

More information

Chapter 5. Software Tools

Chapter 5. Software Tools Chapter 5 Software Tools 1 Introduction The demands of modern life require user-interface architects to build reliable, standard, safe, inexpensive, effective, and widely acceptable user interfaces on

More information