Using E-R and UML Models for DELS Modeling: A case study approach

Slides:



Advertisements
Similar presentations
Chapter 22 Object-Oriented Systems Analysis and Design and UML Systems Analysis and Design Kendall and Kendall Fifth Edition.
Advertisements

Object-Oriented Analysis and Design
IMS1805 Systems Analysis Topic 3: Doing Analysis (continued from previous weeks)
IELM 511: Information System design
© Copyright Eliyahu Brutman Programming Techniques Course.
Using E-R and UML Models for DELS Modeling: A case study approach Sheng Xu Yudi Pranoto Jinxiang Gu.
USE Case Model.
CMIS 470 Structured Systems Design
UML Unified Modeling Language. What is UML? Unified Modeling Language (UML) is a standardized, general-purpose modeling language in the field of software.
Information storage: Introduction of database 10/7/2004 Xiangming Mu.
SOFTWARE ENGINEERING BIT-8 APRIL, 16,2008 Introduction to UML.
CIT UPES | Sept 2013 | Unified Modeling Language - UML.
Intro to UML - OO Class Diagrams Week 5 CMIS570. Plan for Tonight Object terms Unified Modeling Language history Class Diagrams Intro to Oracle Oracle.
Copyright 2002 Prentice-Hall, Inc. Chapter 2 Object-Oriented Analysis and Design Modern Systems Analysis and Design Third Edition Jeffrey A. Hoffer Joey.
Systems Analysis and Design in a Changing World, 3rd Edition
1 CMPT 275 Software Engineering Requirements Analysis Phase Requirements Analysis activity Janice Regan,
1 The Unified Modeling Language. 2 The Unified Modeling Language (UML) is a standard language for writing software blueprints. The UML may be used to.
Logical view –show classes and objects Process view –models the executables Implementation view –Files, configuration and versions Deployment view –Physical.
Design Model Lecture p6 T120B pavasario sem.
Introduction to UML CS A470. What is UML? Unified Modeling Language –OMG Standard, Object Management Group –Based on work from Booch, Rumbaugh, Jacobson.
 Building Block Building Block  Things in the UML Things in the UML  Structural Things Structural Things  Behavioral Things Behavioral Things  Grouping.
Week 04 Object Oriented Analysis and Designing. What is a model? A model is quicker and easier to build A model can be used in simulations, to learn more.
OOAD (part 2) diagrams CSCI577a TAs: Alexey. Outline UML diagrams: – Use case diagrams – Robustness diagrams – Sequence diagrams – Artifacts diagrams.
Object Oriented Analysis and Design Introduction to Rational Rose.
Diagrams. Typically, we view the static parts of a system using one of the four following diagrams. 1. Class diagram 2. Object diagram 3. Component diagram.
WELCOME TO OUR PRESENTATION UNIFIED MODELING LANGUAGE (UML)
Review Business Analyst vs. Systems Analyst – A Business Analyst identifies a problem and states – in business terms -- what the solution is. They define.
Slide 1 Unified Modeling Language, Version 2.0 Object-Oriented SAD.
Modeling with UML – Class Diagrams
CompSci 280 S Introduction to Software Development
Introduction to UML.
Using E-R and UML Models for DELS Modeling: A case study approach
CHAPTER
UML(Unified Modeling Language)
Object-oriented and Structured System Models
Business System Development
The Movement To Objects
Course Outcomes of Object Oriented Modeling Design (17630,C604)
Fundamentals of Information Systems, Sixth Edition
Object-Oriented Analysis and Design
Systems Analysis and Design With UML 2
Use case Diagram.
Unified Modeling Language
Introduction to Unified Modeling Language (UML)
UML Use Case Diagrams.
System Modeling Chapter 4
CSSSPEC6 SOFTWARE DEVELOPMENT WITH QUALITY ASSURANCE
UML: Unified modeling language
The Object Oriented Approach to Design
Software Architecture & Design Pattern
Object-Oriented Analysis
Object Oriented Analysis and Design
The Unified Modeling Language
Unified Modeling Language
Systems Analysis and Design With UML 2
IMAT5205 Systems Analysis and Design
UML Class Diagram.
Introduction to the Unified Modeling Language
Chapter 20 Object-Oriented Analysis and Design
Appendix A Object-Oriented Analysis and Design
Analysis models and design models
Software Design Lecture : 15.
Entity-Relationship Diagram (ERD)
Design Yaodong Bi.
Chapter 22 Object-Oriented Systems Analysis and Design and UML
Appendix A Object-Oriented Analysis and Design
Appendix A Object-Oriented Analysis and Design
Uml diagrams In ooad.
UML  UML stands for Unified Modeling Language. It is a standard which is mainly used for creating object- oriented, meaningful documentation models for.
UML Design for an Automated Registration System
Presentation transcript:

Using E-R and UML Models for DELS Modeling: A case study approach Sheng Xu Yudi Pranoto Jinxiang Gu

Overview Introduction to E-R and UML Models Examples of E-R and UML models Case Study: Wafer Fab Visual Presentation E-R Model UML Model Discussion on Prediction, Control and Design of DELS with E-R and UML

Entity-Relationship Model Entity type Collection of entities, e.g., Students, Instructors Primary key: each entity is assigned a primary key that differentiate it from the other entities in the same group Attributes: represent characteristics of the corresponding entity, e.g., Name, Date of Birth Relationships (between entity type), e.g., Student vs. department (one to many relation): a department has many students, but a student is registered in a single department. Student vs. class (many to many relation): a class has many students, and a student can register in multiple classes. Student vs. mailbox (one to one relation): a student has its own dedicated mailbox, although this is not the case in Georgia Tech.

UML Model It is a much more complicated object-oriented modeling technique, which includes: Model: contain all of the underlying elements about a system Diagrams: capture different perspective about a system 1. Class diagram and object diagram 2. Use case diagram 3. Interaction diagram Sequence diagram Collaboration diagram 4. State diagram 5. Implementation diagram Component diagram Deployment diagram

Implementation Diagram UML Model Model Use Case Diagram Interaction Diagram Implementation Diagram State Diagram Class Diagram

UML Diagrams Class diagram: show types of entities (classes), and their relationships. An object diagram describes instances of classes and their relationships Use case diagram: describe actors, use cases, and their relationships. It provides a natural high-level view of the intended functionality of the system. Interaction diagram: include sequence diagram and collaboration diagram, and display instances and their relationships, organized either by space (collaboration diagram) or by time (sequence diagram). State diagram: show states and their relationships, and is used to specify the overall behavior of a class. Implementation diagram: describes software units that implement the system and their relationships.

UML vs. ER ER has been mainly used in Database design, while UML is a standard object-oriented modeling language for all types of systems, which includes database modeling. The most closest part of UML to ER is the class diagram, which represents the entities and their relationships. But UML has the additional capabilities to represent entity behaviors.

UML objects vs. Entities Window size visibility display() hide() window-ID

Relationships in UML class diagrams Association: one object is associated with another object, corresponding to the relationships in ER. Aggregation: one object is an organized set of other objects, e.g., a tour is an ordered set of locations to be visited. Generalization: one object is a more generalized type of another, student is a super class of undergraduate. …..

Mapping of relationships between UML class diagrams and ER The mapping between associations and ER relationships is straightforward. Some other relationships can be converted to ER relationships also, e.g., generalization can be converted to a “is-a” relationship in ER. But this might result in loss of information in the original UML model, e.g., aggregation can be converted to a “contains” relationship, but the ordered structure cannot be preserved. This is usually compensated by adding a note or comment in the ER model.

Example of ER Model: Web Shop

Example of ER Model: CD Collections

UML Model: Class Diagram Show classes and their relationships to each other.

UML Model: Object Diagram Object diagrams are instances of Class diagrams which show a snapshot of the detailed state of a system at a point in time.

UML Model: Use Case Diagram A generalized description of how a system will be used. Provides an overview of the intended functionality of the system

UML Model: Sequences Diagram A description of sequences.

Case Study: 300mm Wafer-Fab To model a 300mm Wafer Fab Controller for material flow control, stocker control, etc. Principles 1.Provide high-level instruction to devices 2.Initiate device operations, but it does not interfere with the accomplishment of these tasks

Case Study: 300mm Wafer-Fab Station Family Recipe Lot

Wafer Fab: E-R Diagram

Wafer Fab: Database

Wafer Fab:UML Use Case Diagram Sequence Diagram Flow Diagram Class Diagram

Wafer Fab:Use Case Diagram The stocker ASRS put a lot from its load port(intra-bay side) into the its buffer A lot has waited in the same bay for a period of specified time The ASRS of the stocker put a lot from its buffer to its load port(inter-bay side) The transporter retrieved the lot from the stocker load port

Wafer Fab: LP2SIB Event Update location and status Get next step equipment type from lot info Choose the next step equipment 3.1 UseSameBay flag is true, wait WaitSameBayDuration time for the equipment for next process step in the same bay if it is not available 3.2 UseSameBay flag is false, move to the main stocker if it is specified 4. Assign next lot to the load port if available

Wafer Fab: Flow Diagram

Wafer Fab: Sequence Diagram

Wafer Fab: Class Diagram

--

Quote of the Day Optimist: "The glass is half full." Pessimist: "The glass is half empty." Industrial Engineer: "That glass is twice as large as it needs to be."