A Dynamic Analysis Tool for Textually Modeled State Machines Using Umple

Total Page:16

File Type:pdf, Size:1020Kb

A Dynamic Analysis Tool for Textually Modeled State Machines Using Umple UmpleRun: a Dynamic Analysis Tool for Textually Modeled State Machines using Umple Hamoud Aljamaan, Timothy Lethbridge, Miguel Garzón, Andrew Forward School of Electrical Engineering and Computer Science University of Ottawa Ottawa, Canada [email protected], [email protected], [email protected], [email protected] Lethbridge.book Page 299 Tuesday, November 16, 2004 12:22 PM Abstract— In this paper, we present a tool named UmpleRun 4 demonstrates the tool usage. Subsequent sections walk that allows modelers to run the textually specified state machines through an example of instrumenting our example system and under analysis with an execution scenario to validate the model's performing dynamic analysis. dynamic behavior. In addition, trace specification will output Section 8.2 State diagrams 299 execution traces that contain model construct links. This will permit analysis of behavior at the model level. II. EXAMPLE CAR TRANSMISSION MODEL TO BE EXECUTED In this section, we will present the car transmission model Keywords— UmpleRun; Umple; UML; MOTL; stateNested machine; substates that and will guard be conditions our motivating example through this paper. It will execution trace; analysis Aalso state be diagram used to can explain be nested Umple inside and a state.MOTL The syntax. states of The the innerCar diagram are calledtransmission substates model. was inspired by a similar model in I. INTRODUCTION LethbridgeFigure 8.18 and shows Lagani a stateère’s diagram book [4] of. anThe automatic model consists transmission; of at the top one class with car transmission behavior captured by the state Umple [1,2] is a model-oriented programming language level this has three states: ‘Neutral’, ‘Reverse’ and a driving state, which is not machine shown in Fig. 1. The state machine consists of three that allows modelers to model UML constructs textually or explicitly named. The driving state is divided into substates corresponding to states: two simple states (‘neutral’ & ‘reverse’) and one graphically and generate high quality code in a number of the three gears that the system automatically chooses. The advantage of the composite state (‘drive’). The initial state for state machine is targeted programming languages. In an extension to the Umple nesting‘neutral’ is state.that it The shows composite compactly ‘drive’ that the state driving has three substates substates are all very similar language, MOTL was introduced to allow trace specification at tofor each transmission other – in levels particular, (i.e. ‘first’,that they ‘second’, can all transition and ‘third’). to ‘Neutral’ There at any time, the model level for various modeling constructs using model uponare events the user’s to trigger command. transitions The start between symbol states inside and the drivingsome are state shows that level textual trace directives [3]. Trace specification of state itguarded by default as in starts [driveSelected] at the ‘First’, substate.where event However, reachSecondSpeed the user can also manually machines, for instance, has the flexibility of tracing different selectwill not ‘First’ cause or ‘Second’a transition to force unless the Boolean transmission guard to is move evaluated into, and to stay in, these state machine components such as the whole state machine, substates.true. any state (at any level of nesting), and specific events. In this paper, we are presenting the UmpleRun a tool that selectReverse will allow modelers to execute textually modeled state Neutral Reverse machines written in Umple and validate their dynamic selectNeutral behavior using execution scenarios. If a modeler has written selectFirst selectDrive selectSecond selectNeutral MOTL trace directives for the model under analysis, reachSecondSpeed reachThirdSpeed UmpleRun will generate informative execution traces in [driveSelected] [driveSelected] First Second Third addition to the validation verdict. Execution traces can be used dropBelowSecondSpeed dropBelowThirdSpeed to analyse the system under the inspection. [driveSelected] Benefits of our approach include: selectFirst selectSecond • High-level validation of model dynamicFigure behavior 8.18: State diagram forFig. a 1.car’s Car automatic Transmission transmission State Machine showing [4] substates Accomplished by running models against execution scenarios to assert model behavior. The notation reachSecondSpeed[driveSelected] illustrates the use of a guard • White box testing of models: Thorough analysis, conditionThe .Car The transmission system will system only behaviorrespond wasto textuallythe indicated event verification and debugging of the models themselves (modeledreachSecondSpeed using Umple) if the conditionas shown in i nsquare Listing brackets 1. Lines is true. 3 to In 29Figure 8.18, this becomes possible. Models can be traced and then isrepresent used to theprevent car transmissionthe transmission status from state changing machine. gear Line if the4 driver had executed to produce execution traces, which can in manuallyshows the selected state name, first or while second lin gear.e 14 Adeclares guard condition that there differs is an from the type addition be analyzed. ofexit condition action associated we saw in withFigure this 8.14: state. a guard Line condition19 is an example is only evaluatedof a when its guarded event. In line 30 we are doing a code injection to event The remaining sections of this paper are organized as associated event occurs. selectDrive to set the Boolean attribute ‘driveSelected’ to true follows: Section 2 presents a Car transmission system example Figure 8.19 shows how we have converted Figure 8.14 to use nested substates. to differentiate it from the manual triggering caused by event that will be used to help illustrate our approach. Section 3 Now we need to show only one cancel transition and one requestToRegister ‘selectFirst’ which indicates the manual diving mode. describes the UmpleRun tool and execution scenarios. Section transition. Note that the ‘Planned’ state has a transition that points directly to the ‘NotEnoughStudents’ substate, and both the transitions to the ‘Closed’ state comes directly from the inner ‘EnoughStudents’ state. Finally, note that we have added an activity to the ‘Canceled’ state that deletes all registrations. Exercises 16 E162 There is a missing transition in Figure 8.18. Study the diagram, and see if you can find it (do not add any new states or event types). Listing 1: Car transmission Umple code constructor invocations, or method calls such as state machine event calls. Umple 1 class CarTransmission { 2 Boolean driveSelected = false; Listing 3: Execution scenario template 3 status { 4 neutral { Execution Scenario 5 selectReverse -> reverse; command, method_calls_after_commands ... 6 selectDrive -> drive; command_1, values_from_method_calls ... 7 selectFirst -> first; command_2, values_from_method_calls ... 8 selectSecond -> second; ... 9 } command_n, values_from_method_calls ... 10 reverse { 11 selectNeutral -> neutral; 12 } 13 drive { UmpleRun interprets and executes the commands in an 14 exit / { driveSelected = false;} execution scenario to produce a model validation verdict, 15 selectNeutral -> neutral; including the failed assertions. 16 selectFirst -> first; 17 selectSecond -> second; The dynamic validation process in this architecture is 18 first { presented in Fig. 2 and described below: 19 reachSecondSpeed [driveSelected] -> second; 20 } 1. Compilation: The input is an Umple model (named 21 second { 22 reachThirdSpeed [driveSelected] -> third; uModel). At this stage, uModel is parsed, analyzed 23 dropBelowSecondSpeed [driveSelected] -> first; and a Java system is created from the input model by 24 } the Umple compiler. 25 third { 2. Packaging: The Java classes are then packaged into a 26 dropBelowThirdSpeed -> second; 27 } container (JAR). 28 } 3. Loading the model into memory: A dynamic loader 29 } is created using the previously obtained JAR that will 30 before selectDrive { 31 driveSelected = true; allow creating new instances of the classes previously 32 } generated by our input model. 33 } 4. Validation: The commands in the execution scenario are run against the class instances and the assertions Using MOTL, we can write trace directives for trace are validated. The validation verdict is produced at specification of attributes and state machine. Listing 2 presents this final stage. an example of trace directives for the car transmission system. Using Umple’s mixin capability, we can write MOTL trace directives independent of the model. Line 2 indicates that we are interested in tracing any changes to the value of Boolean attribute ‘driveSelected’. Line 3 traces any incoming or outgoing transitions from or into state ‘neutral’. The directive in line 4 will trace whenever event ‘selectReverse’ is triggered causing a transition. More details on MOTL syntax can be found here [3]. Listing 2: MOTL trace directive examples Umple 1 class CarTransmission { 2 trace driveSelected; 3 trace neutral; 4 trace selectReverse; 5 } III. UMPLERUN UmpleRun is our tool for running a set of execution scenarios against a targeted model. This takes as input an execution scenario, a template for which is shown in Fig. 2. Line 1 of any scenario has the keyword ‘command’, then a set of query methods to execute at every step of execution. Lines 2 and onwards are of a set of commands to be executed to drive the scenario, along with assertions of the expected return values of the query methods. The commands can be object Fig. 2.
Recommended publications
  • Xtuml: Current and Next State of a Modeling Dialect
    xtUML: Current and Next State of a Modeling Dialect Cortland Starrett [email protected] 2 Outline • Introduc)on • Background • Brief History • Key Players • Current State • Related Modeling Dialects • Next State • Conclusion [email protected] 3 Introduc)on [email protected] 4 Background • Shlaer-Mellor Method (xtUML) – subject maers, separaon of concerns – data, control, processing – BridgePoint • data modeling (Object Oriented Analysis (OOA)) • state machines • ac)on language • interpre)ve execu)on • model compilaon [email protected] 5 History • 1988, 1991 Shlaer-Mellor Method published by Stephen Mellor and Sally Shlaer. • 2002 Executable UML established as Shlaer-Mellor OOA using UML notation. • 2004 Commercial Corporate Proprietary Licensed. • 2013 BridgePoint xtUML Editor goes open source under Apache 2.0. • 2014 all of BridgePoint (including Verifier and model compilers) goes open source under Apache and Creative Commons. • 2015 Papyrus Industry Consortium and xtUML/BridgePoint contribution • 2015 OSS of alternate generator engine (community building) • 2016 Papyrus-xtUML (BridgePoint) Eclipse Foundation governance • 2016 OSS contributions from industry, university and individuals [email protected] 6 Key Players • Saab • UK Crown • Agilent • Ericsson • Fuji-Xerox • Academia [email protected] 7 Current State • body of IP • self-hosng • Papyrus (and Papyrus Industry Consor)um) [email protected] 8 Related Dialects • MASL • Alf • UML-RT [email protected]
    [Show full text]
  • VI. the Unified Modeling Language UML Diagrams
    Conceptual Modeling CSC2507 VI. The Unified Modeling Language Use Case Diagrams Class Diagrams Attributes, Operations and ConstraintsConstraints Generalization and Aggregation Sequence and Collaboration Diagrams State and Activity Diagrams 2004 John Mylopoulos UML -- 1 Conceptual Modeling CSC2507 UML Diagrams I UML was conceived as a language for modeling software. Since this includes requirements, UML supports world modeling (...at least to some extend). I UML offers a variety of diagrammatic notations for modeling static and dynamic aspects of an application. I The list of notations includes use case diagrams, class diagrams, interaction diagrams -- describe sequences of events, package diagrams, activity diagrams, state diagrams, …more... 2004 John Mylopoulos UML -- 2 Conceptual Modeling CSC2507 Use Case Diagrams I A use case [Jacobson92] represents “typical use scenaria” for an object being modeled. I Modeling objects in terms of use cases is consistent with Cognitive Science theories which claim that every object has obvious suggestive uses (or affordances) because of its shape or other properties. For example, Glass is for looking through (...or breaking) Cardboard is for writing on... Radio buttons are for pushing or turning… Icons are for clicking… Door handles are for pulling, bars are for pushing… I Use cases offer a notation for building a coarse-grain, first sketch model of an object, or a process. 2004 John Mylopoulos UML -- 3 Conceptual Modeling CSC2507 Use Cases for a Meeting Scheduling System Initiator Participant
    [Show full text]
  • State and Activity Diagrams in UML Last Revised December 4, 2018 Objectives: 1
    CPS122 Lecture: State and Activity Diagrams in UML last revised December 4, 2018 Objectives: 1. To show how to create and read State Diagrams 2. To introduce UML Activity Diagrams Materials: 1. Answers to quick check questions from chapter 7 plus chapter 8 a, b, g 2. Demonstration of “Racers” program 3. Handout and Projectable on Web: State diagram for Session 4. Handout: Code for Session class performSession() method 5. Projectable of text figures 7.12, 7.13 6. Handout of Activity diagram for Racers 7. Projectable of text figure 8.10 I. Introduction A.Go over quick check questions chapter 7 + chapter 8 a, b, g only B. We have drawn a distinction between the static aspects of a system and its dynamic aspects. The static aspects of a system have to do with its component parts and how they are related to one another; the dynamic aspects of a system have to do with how the components interact with one another and/or change state internally over time. C. We have been looking at one aspect of the dynamic behavior of a system - the way various objects interact to carry out the various use cases. We have looked at two ways of describing this: 1. Sequence diagrams 2. Communication diagrams D.We now want to look two additional aspects of dynamic behavior !1 1. How an individual object changes state internally over time. a) Example: As part of doing the domain analysis of a traffic light system, it is important to note that individual signals go through a series of states in a prescribed order - modeled by the following state diagram: ! (Note: this is correct for the US but not for all countries in the world!) An important “business rule” that any traffic light system must obey is that the light must be yellow for a certain minimum period of time (related to vehicle speed in the intersection) between displaying green and displaying red.
    [Show full text]
  • Part I Environmental Diagrams
    Adaptive Software Engineering G22.3033-007 Session 3 – Sub-Topic Presentation 1 Use Case Modeling Dr. Jean-Claude Franchitti New York University Computer Science Department Courant Institute of Mathematical Sciences 1 Part I Environmental Diagrams 2 1 What it is • Environmental Diagram Rent Video Video Store Pay Information System Employees Clerk Customer Payroll Clerk 3 What it is • A picture containing all the important players (Actors) • Includes players both inside and outside of the system • Actors are a critical component • External events are a second critical component 4 2 Creating the Diagram • To create an environmental diagram • 1. Identify all the initiating actors • 2. Identify all the related external events associated with each actor 5 Why it is used • A diagram is needed to show the context or scope of the proposed system • At this time actors and external events are the critical components • It is helpful to include all the participants as well 6 3 Creating the Diagram • 3. Identify all the participating Actors • These actors may be inside (internal) or outside (external) to the system 7 Creating the Diagram • Examples of an internal actor – Clerk who enters the purchase into a Point of Sale terminal – Clerk who places paper in the printer – Accountant who audits report 8 4 Creating the Diagram • Examples of an external actor – Accountant who audits report – A credit authorizing service – A DMV check for renting a car 9 Creating the Diagram •4.Draw a cloud • 5. Then draw initiating actors on the left of the cloud • 6. Then draw participating external actors outside the cloud • 7.
    [Show full text]
  • Verification of UML State Diagrams Using a Model Checker
    Verification of UML State Diagrams using a Model Checker A Manuscript Submitted to the Department of Computer Science and the Faculty of the University of Wisconsin-La Crosse La Crosse, Wisconsin by Yiwei Zou in Partial Fulfillment of the Requirements for the Degree of Master of Software Engineering August, 2013 Verification of UML State Diagrams using a Model Checker By Yiwei Zou We recommend acceptance of this manuscript in partial fulfillment of this candidates re- quirements for the degree of Master of Software Engineering in Computer Science. The candidate has completed the oral examination requirement of the capstone project for the degree. Dr.Kasi Periyasamy Date Examination Committee Chairperson Dr.Mao Zheng Date Examination Committee Member Dr.Tom Gendreau Date Examination Committee Member ii Abstract Zou, Yiwei, Verification of UML State Diagrams using a Model Checker, Master of Software Engineering, August 2013. (Advisor: Kasi Periyasamy, Ph.D). This manuscript describes the process of verifying the UML state diagrams by using model checker. A UML state diagram describes the behavior of an object which includes a sequence of states that the object visits during its lifetime. Verification of UML state dia- gram is important because if one state diagram is incorrect, the object’s behavior will not be displayed correctly which leads to incorrect coding and eventually may lead to the possible failure of the system. However, it is hard to verify UML state diagram without the aid of other tools. Therefore, model checker is introduced to verify the UML state diagram. Since model checkers use different syntax, one needs to convert state diagrams from UML tools to the syntax used by the model checker.
    [Show full text]
  • Mastering the Unified Modeling Language -- State Transition Diagrams
    Mastering the Unified Modeling Language -- State Transition Diagrams -- © Josef Schiefer, IBM Watson Outline nested state diagrams States & Transitions Combinatorial Explosion concurrent state machines Solution: Statecharts Statecharts messages ... UML State Diagrams 12/7/2000 - v2 states Stubbed Transitions transitions Synchronization events Concurrency vs. Orthogonality Diagram Elements UML State Machines actions History Indicator guards Sending Messages conditions Compound Transitions UML State Machines 1 Introduction to State Diagrams Interaction diagrams are very good for communication – between clients and designers – between designers and other designers – between designers and implementors But they are not part of the constructive core – Constructive core means that part from which an actual implementation could be generated The constructive core of the UML is – class diagrams (for the static part) – state diagrams (for the dynamic part) State diagrams can bescribe very complex dynamic behavior UML State Machines Elements of State Diagrams The basic elements of state diagrams are – states – the state in which the object finds itself at any moment – transitions – take the object from one state to another – events – cause the transition from one state to another – actions – take place as a result of a transition In the UML, many other extensions have been added, such as: – generalization/Inheritance among events (i.e. a mouse click and keyboard input as subclasses of user interface events) – hierarchical diagrams for managing complexity (from StateCharts) – guards – conditions on transitions State Diagrams should only be used for objects with significant dynamic behavior UML State Machines 2 Types of Events ChangeEvent (i.e.: when(x>y)) – A change event models an event that occurs when an explicit boolean expression becomes true as a result of a change in value of one or more attributes or associations.
    [Show full text]
  • Activity Diagram in UML
    6. UML Activity Diagrams Page 1 of 5 Activity Diagram in UML In the previous article, we learned about State diagrams, the notations to be used in State diagrams, their significance, and how to build a State diagram for a specific scenario in our Courseware Management system. In this article, we will cover the next dynamic diagram—the Activity diagram. By the end of this article, you will know what an Activity diagram is, what its elements are, and you will be able to create Activity diagrams for your system. Basics The easiest way to visualize an Activity diagram is to think of a flowchart of a code. The flowchart is used to depict the business logic flow and the events that cause decisions and actions in the code to take place. Activity diagrams represent the business and operational workflows of a system. An Activity diagram is a dynamic diagram that shows the activity and the event that causes the object to be in the particular state. So, what is the importance of an Activity diagram, as opposed to a State diagram? A State diagram shows the different states an object is in during the lifecycle of its existence in the system, and the transitions in the states of the objects. These transitions depict the activities causing these transitions, shown by arrows. An Activity diagram talks more about these transitions and activities causing the changes in the object states. Defining an Activity diagram Let us take a look at the building blocks of an Activity diagram. Elements of an Activity diagram An Activity diagram consists of the following behavioral elements: Element and its description Symbol Initial Activity: This shows the starting point or first activity of the flow.
    [Show full text]
  • Capstone Software Engineering Students Can Develop a High-Quality Complex System: a Case Study with Umple
    Proceedings 2019 Canadian Engineering Education Association (CEEA-ACEG19) Conference CAPSTONE SOFTWARE ENGINEERING STUDENTS CAN DEVELOP A HIGH-QUALITY COMPLEX SYSTEM: A CASE STUDY WITH UMPLE Timothy C. Lethbridge University of Ottawa [email protected] Abstract – Umple is an open-source programming UmpLe can be run OnLine, in EcLipse, in VisuaL Studio technology developed almost entirely by students, the Code and in severaL other tooLs. It can aLso be used in a majority of whom were working on it as their capstone classic manner as a command-line tool. project through a program called UCOSP. We describe UmpLe is targeted for educators who teach modeling our development process for Umple that has provided a [3][4], for students, and for open source developers who rich educational experience for the students, while at the want to buiLd systems that require low coding effort. The same time continually improving Umple’s quality. We core idea is that the high-level abstractions reduce the also describe features of Umple that have been designed amount of boiLerplate (repetitive) code that needs to be to facilitate its use in teaching software engineering. written, whiLe at the same time enabLing deveLopers and students to think at a higher level and to visualize their Keywords: Capstone project, open source, software code. UmpLe is a textuaL Language, but its high-level engineering, colLaboration, modeL-driven development abstractions can also be rendered and edited as graphs. UmpLe’s online user manual [5], if printed, amounts to 1. INTRODUCTION 300 pages. The OpenHub code analysis system [6] points out that 102 people have contributed a miLLion Lines of We describe our approach that has enabled successive code to UmpLe and suggests they have spent 286 person- groups of students to engineer and evolve a complex, years of effort on it based on its apparent complexity.
    [Show full text]
  • UML UML (Unified Modeling Language)
    CS189A/172 UML UML (Unified Modeling Language) • Combines several visual specification techniques – use case diagrams, component diagrams, package diagrams, deployment diagrams, class diagrams, sequence diagrams, collaboration diagrams, state diagrams, activity diagrams • Based on object oriented principles and concepts – encapsulation, abstraction – classes, objects • Semi-formal – Precise syntax but no formal semantics – There are efforts in formalizing UML semantics • There are tools which support UML – Can be used for developing UML models and analyzing them Examples for UML Tool Support • IBM’s Rational Rose is a software development tool based on UML. It has code generation capability, configuration management etc. – http://www-01.ibm.com/software/awdtools/developer/rose/ • Microsoft Visio has support for UML shapes and can be used for basic UML diagram drawing. • ArgoUML is an open source tool for developing UML models – http://argouml.tigris.org/ • USE is an open source tool which supports UML class diagrams and Object Constraint Language – http://www.db.informatik.uni-bremen.de/projects/USE/ • yUML is an easy to use tool for drawing UML diagrams. Supports class, activity and use-case diagrams – http://yuml.me/ UML References • There are lots of books on UML. The ones I used are: – “UML Distilled,” Martin Fowler • The examples I use in this lecture are from this book – “Using UML,” Perdita Stevens – “UML Explained,” Kendall Scott – “UML User Guide,” Grady Booch, James Rumbaugh, Ivar Jacobson • The Object Management Group (OMG,
    [Show full text]
  • Important Java Programming Concepts
    Appendix A Important Java Programming Concepts This appendix provides a brief orientation through the concepts of object-oriented programming in Java that are critical for understanding the material in this book and that are not specifically introduced as part of the main content. It is not intended as a general Java programming primer, but rather as a refresher and orientation through the features of the language that play a major role in the design of software in Java. If necessary, this overview should be complemented by an introductory book on Java programming, or on the relevant sections in the Java Tutorial [10]. A.1 Variables and Types Variables store values. In Java, variables are typed and the type of the variable must be declared before the name of the variable. Java distinguishes between two major categories of types: primitive types and reference types. Primitive types are used to represent numbers and Boolean values. Variables of a primitive type store the actual data that represents the value. When the content of a variable of a primitive type is assigned to another variable, a copy of the data stored in the initial variable is created and stored in the destination variable. For example: int original = 10; int copy = original; In this case variable original of the primitive type int (short for “integer”) is assigned the integer literal value 10. In the second assignment, a copy of the value 10 is used to initialize the new variable copy. Reference types represent more complex arrangements of data as defined by classes (see Section A.2).
    [Show full text]
  • Systems, Views and Models of UML∗
    Systems, Views and Models of UML∗ Ruth Breu, Radu Grosu, Franz Huber, Bernhard Rumpe, Wolfgang Schwerin email: {breur,grosu,huberf,rumpe,schwerin} @informatik.tu-muenchen.de Technische Universit¨atM¨unchen Arcisstr. 21 D-80290 M¨unchen, Germany Abstract In this paper we show by using the example of UML, how a soft- ware engineering method can benefit from an integrative mathemat- ical foundation. The mathematical foundation is given by a mathe- matical system model. This model provides the basis both for inte- grating the various description techniques of UML and for implement- ing methodical support. After describing the basic concepts of the system model, we give a short overview of the UML description tech- niques. Then we show how they fit into the system model framework and sketch an approach to structure the UML development process such that it provides methodological guidance for developers. 1 Introduction – Why Formalization? “The nice thing about graphical description techniques is that everyone un- derstands them, the bad thing, however, is that everyone understands them in a different way.” This often heard quote captures a main property of mod- eling techniques using semi-formal, mostly graphical notations, beginning with the early structured modeling techniques and prevalent until today’s object-oriented methods. The diagrammatic notations used here seem easily comprehensible for everyone dealing with software development. Experience ∗ This paper originates from the SysLab project, which is supported by the DFG under the Leibnizprogramme and by Siemens-Nixdorf. [BGH+98b] R. Breu, R. Grosu, F. Huber, B. Rumpe, W. Schwerin. Systems, Views and Models of UML.
    [Show full text]
  • OMG Systems Modeling Language (OMG Sysml™) Tutorial
    OMG Systems Modeling Language (OMG SysML™) Tutorial Based on the INCOSE tutorial available on the web http://www.uml-sysml.org/documentation/sysml-tutorial-incose-2.2mo and the book “SysML for Systems Engineers” SysML as an OMG standard • Specification status Adopted by OMG in May ’06 • Current Specification v1.2 released in June 2010 • The INCOSE tutorial is based on the OMG SysML specification v 1.0 (2007-09-01) • The tutorial, the specifications, papers, and info on tools can be found on the OMG SysML Website at http://www.omg.org/spec/SysML/ • The examples are based on the Topcased modeling tool (open source and Eclipse-based, available at www.topcased.org) Motivation, Objectives and Audience • At the end of this tutorial, you should have an understanding of: – Motivation of model-based systems engineering approach – SysML diagrams and language concepts – How to apply SysML as part of a model-based SE process – The course must be supplemented by modeling practice. • Intended Audience: – Practicing Systems Engineers interested in system modeling – Software Engineers who want to better understand how to integrate software and system models – Familiarity with UML is not required, but it helps What is Systems Engineering • Systems Engineering is a discipline that concentrates on the design and application of the whole (system) as distinct from the parts. It involves looking at the problem in its entirety, taking into account all the facets and all the variables. ( Federal Aviation Agency FAA-USA, Systems Engineering Manual, Definition by Simon Ramo, 2006 ) • Systems Engineering is an iterative process of top-down synthesis, development and operation of a real-world system that satisfies, in a near-optimal manner, the full range of requirements for the system.
    [Show full text]