Object-Oriented Analysis and Design
|
|
|
- Lucy Webb
- 9 years ago
- Views:
Transcription
1 CHAPTER 2 Object-Oriented Analysis and Design Objectives The objectives of this chapter are to identify the following: Define a weather monitoring station. Analyze the system to determine its key classes. Design those classes. Create basic UML diagrams used to represent class relationships. Software Development Methods 1
2 Problem Statement Grady Booch provides this example of a software system in need of analysis and design 1 : The system shall provide automatic monitoring of various weather conditions. Specifically, it must measure: Wind speed and direction Temperature Barometric pressure Humidity The system shall also provide the following derived measurements: Wind chill Dew point temperature Temperature trend Barometric pressure trend The system shall have a means of determining the current time and date, so that it can report the highest and lowest values of any of the four primary measurements during the previous 24 hour period. The system shall have a display that continuously indicates all eight primary and derived measurements, as well as the current time and date. Through the use of a keypad, the user may direct the system to display the 24-hour high or low value of any one primary measurement, together with the time of the reported value. The system shall allow the user to calibrate its sensors against known values, and to set the current time and date. Hardware Assumptions In addition, Booch also makes some basic hardware assumptions: We will use a single-board computer (SBC) with a 486-class processor. Time and date are supplied by an on-board clock, accessible via memorymapped I/O. Temperature, barometric pressure, and humidity are measure by on-board circuits (with remote sensors), also accessible via memory-mapped I/O. 1. Object-Oriented Analysis and Design with Applications, 2nd Edition, Grady Booch, The Benjamin/Cummings Publishing Company, 1994, pp Software Development Methods
3 Wind direction and speed are measure from a boom encompassing a wind vane (capable of sensing wind from any of 16 directions) and cups (which advance a counter for each revolution). User input is provided through an off-the-shelf telephone keypad, managed by an on-board circuit supplying audible feedback for each key press. Last user input is accessible via memory mapped I/O. The display is an off-the-shelf LCD graphic device, managed by an on-board circuit capable of processing a simple set of graphics primitives, including messages for drawing lines and arcs, filling regions, and displaying text. An on-board timer interrupts the computer every 1/60 second. The kind of hardware is chosen to simplify the software development process and to alleviate much of the low-level coding that would otherwise be required. The Goals of Object- Oriented Analysis The analysis phase of an object-oriented system has several key objectives: Identify the key actors within the system. An actor is an element within the system that performs some task, either actively or passively. These actors will usually end up becoming the classes of the system. Segregate the roles and responsibilities of each actor. This helps us begin to see how the actors will inter-relate during system execution and to make sure all of our required functionality is accounted for. These roles and responsibilities generally end up becoming methods available on the classes representing the various actors. Determining the System Boundary Before embarking on the analysis and design phase, we must first analyze the system boundary to determine what we need to build versus what can be bought or what is already available to us in pre-written class libraries. Once the system boundary has been established, we can begin a class analysis. During a class analysis we seek to identify the important classes within the system. This need not be an exhaustive list (we will be identifying classes all the way through deployment), but it should serve to capture the essential elements of the system. We can find these classes in numerous locations: Tangible things People or roles Places or locations Interactions Software Development Methods 3
4 Organizations Events Concepts Useful Techniques for Class Analysis There are several useful techniques that can be employed to facilitate class analysis. Some of these include: Data dictionary Informal requirements CRC cards Use-Case Analysis Data Dictionary A data dictionary is generally maintained by a database administrator. It outlines, at a fairly detailed level, what the entities are that are being stored in the database, the attributes of those entities, and the relationships that the entities maintain to one another. Entities from this data dictionary may prove useful as classes. Another advantage to this technique is that many of the attributes and relationships have already been defined. Informal Requirements We can sometimes glean classes from informal specifications. For instance we might identify nouns as either classes or attributes and verbs as operations. This method is sometimes useful for a quick analysis, but for any in-depth analysis, I would recommend either CRC cards, or use-case analysis. CRC Cards Another way of keeping track of the actors, their responsibilities, and their interrelationships, is by using CRC cards. A CRC card is nothing more than an index card. It identifies a Class, that class Responsibilities, and the other classes with whom it Collaborates. While usually not suitable as aa final deliverable to a client, CRC cards can be a good first step in identifying the main components of the system. Use-Case One good method of doing systems analysis and design is called use-case analysis. Essentially this is nothing more than a story board of various scenarios that 4 Software Development Methods
5 the systems is meant to handle and the method in which it will handle those scenarios. The following is an example from the Booch text: Setting the time and date. 1. User presses the select key. 2. System displays selecting. 3. User presses any one of the keys time or date; any other key (except run, wind speed, temperature, pressure, or humidity) will be ignored. 4. System flashes the corresponding label; display also flashes the first field of the selected item (hours for time, and month for date). 5. User presses left or right keys to select another field. User presses the up or down keys to raise or lower the value of the selected field. 6. Control passes back to step 3 or 5. Time-Date Class The first class we ll look at is the TimeDate class. This class is responsible for acquiring, calibrating, and displaying the current time and date. While it is possible to capture this class using text, it will be much more efficient to document it using a simple UML class diagram. This diagram describes the class using some of its key properties and methods. It also allows the analyst the indicate class-level versus object-level properties and methods as well as the access (public, private, or protected) of each member. For the analysis phase we can dispense with much of this detail and make some preliminary assumptions. A class diagram consists of a box divided into three horizontal layers. In the first layer we write the class name. In the second we place the class attributes, and in the third layer we place the class methods. For example, the class diagram for the TimeDate class might appear as the one to the left. This diagram is an example of an analysis diagram; it doesn t contain too many details. However, for a design diagram we embellish this diagram a bit. Specifically we begin to add types and access specifiers. Software Development Methods 5
6 For instance, the time and date might be represented as long integers. Each of the class methods will have some set of parameters and return types. More importantly, we begin to identify the visibility of each class member by providing an indication of its access specifiers. An example of a design class diagram is seen to the right. Notice that to the right of each member a type is listed. This represents the type of data used to implement each of the attributes and the type of data returned by the methods. Also notice that next to each member is a symbol, either + or -. These are access specifiers. A minus sign (-) indicates that the member is private to the class. A plus sign (+) indicates that the member is public. A pound sign (#) would indicate that the member is protected. Note that these specifiers map to the corresponding specifiers in both C++ an Java. Temperature Sensor The next class describes the temperature sensor. This sensor should be able to report on: the current temperature the high and low temperatures for the prior 24 hour period any temperature trends Class: Temperature Sensor Attributes: temperature trend Operations: currenttemperature setlowtemperature sethightemperature gettrend 6 Software Development Methods
7 Pressure Sensor The next class describes the pressure sensor. This sensor should report on: the current pressure the high and low pressures for the prior 24 hour period any pressure trends Class: Pressure Sensor Attributes: pressure trend Operations: currentpressure setlowpressure sethighpressure gettrend Trend Sensor Notice that both of these classes must report on the trends of their various measurements. In this case we choose to pull out this common functionality into a separate class and use inheritance to make this functionality common to the two classes. Thus we end up with a new class, Trend Sensor, which is able to: report on trends Class: Trend Sensor Attributes: trend Operations: gettrend Since we have now pulled the common functionality of trend sensing from the other two classes, they become somewhat simplified: Class: Temperature Sensor Attributes: temperature Operations: currenttemperature setlowtemperature sethightemperature Class: Pressure Sensor Attributes: pressure Operations: currentpressure setlowpressure sethighpressure Software Development Methods 7
8 Humidity Sensor The humidity sensor is similar to the other sensors. This sensor should be able to report on: the current humidity the high and low humidities for the prior 24 hour period Class: Humidity Sensor Attributes: humidity Operations: currenthumidity setlowhumidity sethighhumidity History Sensor As before, we can see that the humidity sensor, like the temperature and pressure sensors exhibits the ability to report on the highest and lowest values of their respective measurements within the prior 24-hour period. This similarity prompts us to abstract the sensor classes still further. To do this we create the History Sensor. This sensor is able to report on: the low and high values encountered within a 24-hour period the date and time of those measurements Class: History Sensor Operations: lowvalue timeoflowvalue highvalue timeofhighvalue Notice that unlike the other classes, the History Sensor has no attributes: its only members are methods. This is a common phenomenon and allows us to observe the following best practice: Program to an interface, not an implementation. We will discuss this more later. 8 Software Development Methods
9 Wind Speed Sensor The wind speed sensor is similar to the other sensors. This sensor should be able to report on: the current wind speed the high and low wind speeds for the prior 24 hour period Class: Wind Speed Sensor Attributes: speed Operations: currentspeed setlowspeed sethighspeed Calibrating Sensor Reviewing the requirements, it appears that we have missed a key point, that is, that most of the sensors must be able to be calibrated to some known value. While this functionality is straightforward, we don t want to duplicate it if we can avoid it. The obvious solution is to place this functionality into another superclass called Calibrating Sensor. The calibrating sensor takes most of the common data from the other classes. Each calibrating sensor will be able to report on: the current value the high and low values for the prior 24 hour period Class: Calibrating Sensor Operations: currentvalue setlowvalue sethighvalue The Calibrating Sensor is an immediate superclass of the History Sensor. This makes sense since any History Sensor must be able to report on values that were tracked via the functionality provided by the Calibrating Sensor. Software Development Methods 9
10 Wind Direction Sensor The wind direction sensor is the last sensor. This sensor is different from the others in that it requires no history and needs to observe no trends. The Wind Direction Sensor will report on: the current wind direction Class: Wind Direction Sensor Attributes: direction Operations: currentdirection Sensor Hierarchy As a final unification for all of our sensors, we provide a single abstract class called Sensor. The final sensor Hierarchy appears as follows: Sensor / \ / \ Calibrating Wind Direction \ \ Historical / \ / \ / \ / \ Trend Humidity Wind Speed / \ / \ Temperature Pressure The display manager, keypad, and timer classes are not as interesting to our discussion, so we will not spend much time on them. Instead we ll take a look at some ways of performing analysis and design. 10 Software Development Methods
11 Starting the Course Project You now have enough information to begin analyzing and designing your own course project. For the next phase of your project you need to turn in several UML diagrams outlining some of the core functionality of your system. We will continue our discussion of UML next week. For this week you should plan on completing: Use-case analysis for one of the major functions of your system. The use case should outline, in detail, the steps that will be executed and the results that the system will return. Preliminary class analysis and diagrams. These should include the class names, attributes, and operations. It should also show any inheritance that is present. Next week we will see how to show relationships between the classes. Software Development Methods 11
12 12 Software Development Methods
Object-oriented design methodologies
Object-oriented design methodologies An object-oriented methodology is defined as the system of principles and procedures applied to object-oriented software development. Five years ago, there was no standard
How To Design Software
The Software Development Life Cycle: An Overview Presented by Maxwell Drew and Dan Kaiser Southwest State University Computer Science Program Last Time The design process and design methods Design strategies
Applying Use Cases to Microcontroller Code Development. Chris Gilbert Cypress Semiconductor
Applying Use Cases to Microcontroller Code Development Chris Gilbert Cypress Semiconductor Agenda Why Use Cases Microcontroller Project Development Use Cases Defined Use Cases Composition General Example
Case studies: Outline. Requirement Engineering. Case Study: Automated Banking System. UML and Case Studies ITNP090 - Object Oriented Software Design
I. Automated Banking System Case studies: Outline Requirements Engineering: OO and incremental software development 1. case study: withdraw money a. use cases b. identifying class/object (class diagram)
LECTURE 11: PROCESS MODELING
LECTURE 11: PROCESS MODELING Outline Logical modeling of processes Data Flow Diagram Elements Functional decomposition Data Flows Rules and Guidelines Structured Analysis with Use Cases Learning Objectives
ATM Case Study Part 1
ATM Case Study Part 1 A requirements document specifies the purpose of the ATM system and what it must do. Requirements Document A local bank intends to install a new automated teller machine (ATM) to
User Guide. Temperature and Humidity Datalogger. Model 42280
User Guide Temperature and Humidity Datalogger Model 42280 Introduction Congratulations on your purchase of the Extech 42280 Thermometer and Relative Humidity Datalogger. The 42280 is a wall-mount, tripod
Announcements. SE 1: Software Requirements Specification and Analysis. Review: Use Case Descriptions
Announcements SE 1: Software Requirements Specification and Analysis Lecture 4: Basic Notations Nancy Day, Davor Svetinović http://www.student.cs.uwaterloo.ca/ cs445/winter2006 uw.cs.cs445 Send your group
1. Process Modeling. Process Modeling (Cont.) Content. Chapter 7 Structuring System Process Requirements
Content Chapter 7 Structuring System Process Requirements Understand the logical (&physical) process modeling by using data flow diagrams (DFDs) Draw DFDs & Leveling Balance higher-level and lower-level
A UML Introduction Tutorial
A UML Introduction Tutorial 1/27/08 9:55 PM A UML Introduction Tutorial In this tutorial you will learn about the fundamentals of object oriented modelling, the Unified Modelling Language and the software
TRAFFIC LIGHT: A PEDAGOGICAL EXPLORATION
TAFFIC LIGHT: A PEDAGOGICAL EXPLOATION THOUGH A DESIGN SPACE Viera K. Proulx. Jeff aab, ichard asala College of Computer Science Northeastern University Boston, MA 02115 617-373-2462 [email protected], [email protected],
ROC Protocol Specifications Manual
Part Number D301053X012 June 2015 ROC Protocol Specifications Manual Remote Automation Solutions ROC Protocol Specifications Manual Revision Tracking Sheet June 2015 This manual may be revised periodically
Software Engineering. System Models. Based on Software Engineering, 7 th Edition by Ian Sommerville
Software Engineering System Models Based on Software Engineering, 7 th Edition by Ian Sommerville Objectives To explain why the context of a system should be modeled as part of the RE process To describe
RUP Design. Purpose of Analysis & Design. Analysis & Design Workflow. Define Candidate Architecture. Create Initial Architecture Sketch
RUP Design RUP Artifacts and Deliverables RUP Purpose of Analysis & Design To transform the requirements into a design of the system to-be. To evolve a robust architecture for the system. To adapt the
For more detailed information, see your Vantage Vue Console manual.
For more detailed information, see your Vantage Vue Console manual. Current Weather Mode Moon phase, alarm & forecast icons Wind Rose Compass Antenna icon shows active transmission Graph of selected variable
Wait-Time Analysis Method: New Best Practice for Performance Management
WHITE PAPER Wait-Time Analysis Method: New Best Practice for Performance Management September 2006 Confio Software www.confio.com +1-303-938-8282 SUMMARY: Wait-Time analysis allows IT to ALWAYS find the
1. Computer System Structure and Components
1 Computer System Structure and Components Computer System Layers Various Computer Programs OS System Calls (eg, fork, execv, write, etc) KERNEL/Behavior or CPU Device Drivers Device Controllers Devices
Web Portal Step by Step
Web Portal Step by Step Topics Getting Started The Dashboard General Information Weather Data Widgets Charting Settings Setting Up My Web Bridge Sharing My Weather Viewing A Friends Weather Weather Select
DS1104 R&D Controller Board
DS1104 R&D Controller Board Cost-effective system for controller development Highlights Single-board system with real-time hardware and comprehensive I/O Cost-effective PCI hardware for use in PCs Application
AUTOMATIC NIGHT LAMP WITH MORNING ALARM USING MICROPROCESSOR
AUTOMATIC NIGHT LAMP WITH MORNING ALARM USING MICROPROCESSOR INTRODUCTION This Project "Automatic Night Lamp with Morning Alarm" was developed using Microprocessor. It is the Heart of the system. The sensors
EXPLANATION OF WEATHER ELEMENTS AND VARIABLES FOR THE DAVIS VANTAGE PRO 2 MIDSTREAM WEATHER STATION
EXPLANATION OF WEATHER ELEMENTS AND VARIABLES FOR THE DAVIS VANTAGE PRO 2 MIDSTREAM WEATHER STATION The Weather Envoy consists of two parts: the Davis Vantage Pro 2 Integrated Sensor Suite (ISS) and the
Object Instance Profiling
Object Instance Profiling Lubomír Bulej 1,2, Lukáš Marek 1, Petr Tůma 1 Technical report No. 2009/7, November 2009 Version 1.0, November 2009 1 Distributed Systems Research Group, Department of Software
06MAR THU 12:38.28. User Manual
06MAR THU 12:38.28 88.2% 28.0C User Manual 1.0 General Guide Thank you for purchasing your new ADC. We recommend reading this manual, and practicing the operations before using your ADC in the field. The
Chapter 8 Approaches to System Development
Systems Analysis and Design in a Changing World, sixth edition 8-1 Chapter 8 Approaches to System Development Table of Contents Chapter Overview Learning Objectives Notes on Opening Case and EOC Cases
CHAPTER_3 SOFTWARE ENGINEERING (PROCESS MODELS)
CHAPTER_3 SOFTWARE ENGINEERING (PROCESS MODELS) Prescriptive Process Model Defines a distinct set of activities, actions, tasks, milestones, and work products that are required to engineer high quality
Weather Capture Software Guide Version 1.4 Revision: June 10 2008
Weather Capture Software Guide Version 1.4 Revision: June 10 2008 1 Introduction 2 Menu screen structure and navigation Menu Bar i. File ii. Display iii. Settings Alarm User Download Language iv. Help
User Manual. Humidity-Temperature Chart Recorder. Model RH520
User Manual Humidity-Temperature Chart Recorder Model RH520 Introduction Congratulations on your purchase of the Extech RH520 Temperature + Humidity Chart Recorder. The RH520 measures and displays Temperature,
QUALITY TOOLBOX. Understanding Processes with Hierarchical Process Mapping. Robert B. Pojasek. Why Process Mapping?
QUALITY TOOLBOX Understanding Processes with Hierarchical Process Mapping In my work, I spend a lot of time talking to people about hierarchical process mapping. It strikes me as funny that whenever I
ATM Case Study OBJECTIVES. 2005 Pearson Education, Inc. All rights reserved. 2005 Pearson Education, Inc. All rights reserved.
1 ATM Case Study 2 OBJECTIVES.. 3 2 Requirements 2.9 (Optional) Software Engineering Case Study: Examining the Requirements Document 4 Object-oriented design (OOD) process using UML Chapters 3 to 8, 10
2011, The McGraw-Hill Companies, Inc. Chapter 5
Chapter 5 5.1 Processor Memory Organization The memory structure for a PLC processor consists of several areas, some of these having specific roles. With rack-based memory structures addresses are derived
USING UML FOR OBJECT-RELATIONAL DATABASE SYSTEMS DEVELOPMENT: A FRAMEWORK
USING UML FOR OBJECT-RELATIONAL DATABASE SYSTEMS DEVELOPMENT: A FRAMEWORK Ming Wang, California State University, [email protected] ABSTRACT Data model of object-relational databases (ORDBs) is
Chapter 1. Introduction to ios Development. Objectives: Touch on the history of ios and the devices that support this operating system.
Chapter 1 Introduction to ios Development Objectives: Touch on the history of ios and the devices that support this operating system. Understand the different types of Apple Developer accounts. Introduce
Exercises on Use Cases
Exercises on Use Cases Wishnu Prasetya ([email protected]) 2010/11 1. Many people have cats. Suppose you want to develop software enabling them to keep track the location of their cats; give a use case diagram
Automation Unit TM 1703 ACP Flexible automation and telecontrol
Automation Unit Flexible automation and telecontrol Power Transmission and Distribution Outstanding performance: Automate simply with Highly complex and yet fully transparent automation solutions are not
Quareo ICM Server Software
The Quareo Infrastructure Configuration Manager (ICM) is a server software application designed to document and administer both passive and active network connectivity infrastructure. ICM enables management
SAMPLE CHAPTERS UNESCO EOLSS DIGITAL INSTRUMENTS. García J. and García D.F. University of Oviedo, Spain
DIGITAL INSTRUMENTS García J. and García D.F. University of Oviedo, Spain Keywords: analog-to-digital conversion, digital-to-analog conversion, data-acquisition systems, signal acquisition, signal conditioning,
Massachusetts Institute of Technology
Objectives Massachusetts Institute of Technology Robotics: Science and Systems I Lab 1: System Overview and Introduction to the µorcboard Distributed: February 4, 2015, 3:30pm Checkoffs due: February 9,
Chapter 2 System Basics
Chapter 2 System Basics The Evolution DX2 Controller contains a comprehensive feature set to support virtually any conceivable irrigation system/configuration. In addition to the more traditional irrigation
In this Lecture you will Learn: Systems Development Methodologies. Why Methodology? Why Methodology?
In this Lecture you will Learn: Systems Development Methodologies What a systems development methodology is Why methodologies are used The need for different methodologies The main features of one methodology
Development Methodologies. Types of Methodologies. Example Methodologies. Dr. James A. Bednar. Dr. David Robertson
Development Methodologies Development Methodologies Dr. James A. Bednar [email protected] http://homepages.inf.ed.ac.uk/jbednar Dr. David Robertson [email protected] http://www.inf.ed.ac.uk/ssp/members/dave.htm
CPS122 Lecture: State and Activity Diagrams in UML
CPS122 Lecture: State and Activity Diagrams in UML Objectives: last revised February 14, 2012 1. To show how to create and read State Diagrams 2. To introduce UML Activity Diagrams Materials: 1. Demonstration
Use Case Diagrams. Tutorial
Use Case Diagrams Tutorial What is a use case? A requirements analysis concept A case of a use of the system/product Describes the system's actions from a the point of view of a user Tells a story A sequence
Using Use Cases for requirements capture. Pete McBreen. 1998 McBreen.Consulting
Using Use Cases for requirements capture Pete McBreen 1998 McBreen.Consulting [email protected] All rights reserved. You have permission to copy and distribute the document as long as you make no changes
Microtronics technologies Mobile: 99707 90092
For more Project details visit: http://www.projectsof8051.com/rfid-based-attendance-management-system/ Code Project Title 1500 RFid Based Attendance System Synopsis for RFid Based Attendance System 1.
Input / Output and I/O Strategies
The Four Major Input / Output Strategies Preliminary Definitions A Silly Example to Illustrate Basic Definitions Input / Output and I/O Strategies A Context for Advanced I/O Strategies The Four Strategies
The I2C Bus. NXP Semiconductors: UM10204 I2C-bus specification and user manual. 14.10.2010 HAW - Arduino 1
The I2C Bus Introduction The I2C-bus is a de facto world standard that is now implemented in over 1000 different ICs manufactured by more than 50 companies. Additionally, the versatile I2C-bus is used
2 SYSTEM DESCRIPTION TECHNIQUES
2 SYSTEM DESCRIPTION TECHNIQUES 2.1 INTRODUCTION Graphical representation of any process is always better and more meaningful than its representation in words. Moreover, it is very difficult to arrange
Masters of Science in Software & Information Systems
Masters of Science in Software & Information Systems To be developed and delivered in conjunction with Regis University, School for Professional Studies Object Oriented Design Table of Contents January
Chapter 6. Data-Flow Diagrams
Chapter 6. Data-Flow Diagrams Table of Contents Objectives... 1 Introduction to data-flow diagrams... 2 What are data-flow diagrams?... 2 An example data-flow diagram... 2 The benefits of data-flow diagrams...
Let s put together a Manual Processor
Lecture 14 Let s put together a Manual Processor Hardware Lecture 14 Slide 1 The processor Inside every computer there is at least one processor which can take an instruction, some operands and produce
Operating system Dr. Shroouq J.
3 OPERATING SYSTEM STRUCTURES An operating system provides the environment within which programs are executed. The design of a new operating system is a major task. The goals of the system must be well
Requirements Analysis Concepts & Principles. Instructor: Dr. Jerry Gao
Requirements Analysis Concepts & Principles Instructor: Dr. Jerry Gao Requirements Analysis Concepts and Principles - Requirements Analysis - Communication Techniques - Initiating the Process - Facilitated
Case Study: conceptual modeling of a helpdesk request manager
Case Study: conceptual modeling of a helpdesk request manager Prof. Dr. Gharaei UML, SoSe 2014 Version 1.3, 19.10.2013 1. Introduction An enterprise IT support team uses a helpdesk system to handle user
Introduction to Systems Analysis and Design
Introduction to Systems Analysis and Design What is a System? A system is a set of interrelated components that function together to achieve a common goal. The components of a system are called subsystems.
Case Study: ATM machine I. Amalia Foka CEID - University of Patras Object Oriented Programming II (C++) Fall 2010-2011
Case Study: ATM machine I Amalia Foka CEID - University of Patras Object Oriented Programming II (C++) Fall 2010-2011 Requirements Document An ATM allows users to perform basic financial transactions view
Take-Home Exercise. z y x. Erik Jonsson School of Engineering and Computer Science. The University of Texas at Dallas
Take-Home Exercise Assume you want the counter below to count mod-6 backward. That is, it would count 0-5-4-3-2-1-0, etc. Assume it is reset on startup, and design the wiring to make the counter count
Release Notes. Asset Control and Contract Management Solution 6.1. March 30, 2005
Release Notes Asset Control and Contract Management Solution 6.1 March 30, 2005 Contents SECTION 1 OVERVIEW...4 1.1 Document Purpose... 4 1.2 Background... 4 1.3 Documentation... 4 SECTION 2 UPGRADING
MAGICAR M871A. Car alarm with two-way remote User s guide
MAGICAR M871A Car alarm with two-way remote User s guide EN MAGICAR M871A Car alarm with two-way remote User s guide TABLE OF CONTENTS Table of contents...2 1. Important notice...4 2. Introduction...4
Reference Guide. Vantage PRO2 Quick
3465 Diablo Avenue, Hayward, CA 94545-2778 U.S.A. 510-732-9229 Fax: 510-732-9188 E-mail: [email protected] www.davisnet.com Vantage PRO2 Quick Reference Guide Part Number: 07395.235 Rev C (1/6/2012) 2012
KWIC Exercise. 6/18/2007 2007, Spencer Rugaber 1
KWIC Exercise On a subsequent slide, you will be given the description of a simple program for which you will be asked to devise two architectures. For the purposes of this exercise, you should imagine
STEPPER MOTOR SPEED AND POSITION CONTROL
STEPPER MOTOR SPEED AND POSITION CONTROL Group 8: Subash Anigandla Hemanth Rachakonda Bala Subramanyam Yannam Sri Divya Krovvidi Instructor: Dr. Jens - Peter Kaps ECE 511 Microprocessors Fall Semester
Object Oriented Design
Object Oriented Design Kenneth M. Anderson Lecture 20 CSCI 5828: Foundations of Software Engineering OO Design 1 Object-Oriented Design Traditional procedural systems separate data and procedures, and
Semantic Object Language Whitepaper Jason Wells Semantic Research Inc.
Semantic Object Language Whitepaper Jason Wells Semantic Research Inc. Abstract While UML is the accepted visual language for object-oriented system modeling, it lacks a common semantic foundation with
Solar energy e-learning laboratory - Remote experimentation over the Internet
Solar energy e-learning laboratory - Remote experimentation over the Internet Ioannis Michaelides, Polyvios Eleftheriou, Kypros Economides Department of Mechanical Engineering Higher Technical Institute,
What is a life cycle model?
What is a life cycle model? Framework under which a software product is going to be developed. Defines the phases that the product under development will go through. Identifies activities involved in each
LICENSING MANAGEMENT SERIES. A Guide to Assessing Windows Server Licensing
LICENSING MANAGEMENT SERIES A Guide to Assessing Windows Server Licensing July 2010 This document provides customers of Windows Server 2003, Windows Server 2003 R2, Windows Server 2008, and Windows Server
6-1. Process Modeling
6-1 Process Modeling Key Definitions Process model A formal way of representing how a business system operates Illustrates the activities that are performed and how data moves among them Data flow diagramming
LEVERAGING FPGA AND CPLD DIGITAL LOGIC TO IMPLEMENT ANALOG TO DIGITAL CONVERTERS
LEVERAGING FPGA AND CPLD DIGITAL LOGIC TO IMPLEMENT ANALOG TO DIGITAL CONVERTERS March 2010 Lattice Semiconductor 5555 Northeast Moore Ct. Hillsboro, Oregon 97124 USA Telephone: (503) 268-8000 www.latticesemi.com
STSG Methodologies and Support Structure
STSG Methodologies and Support Structure STSG Application Life Cycle Management STSG utilizes comprehensive lifecycle tools that are fully integrated and provide capabilities for most of the roles in its
Software INTERACT. MachineLogic. The Shortest Distance Between Man and Machine
Software INTERACT MachineLogic The Shortest Distance Between Man and Machine Fully IntegrateYour HMI and PC-Based Control With MachineShop Project Management MachineShop s Project Management is a simple,
Lab 3 - DC Circuits and Ohm s Law
Lab 3 DC Circuits and Ohm s Law L3-1 Name Date Partners Lab 3 - DC Circuits and Ohm s Law OBJECTIES To learn to apply the concept of potential difference (voltage) to explain the action of a battery in
Design and UML Class Diagrams. Suggested reading: Practical UML: A hands on introduction for developers http://dn.codegear.
Design and UML Class Diagrams Suggested reading: Practical UML: A hands on introduction for developers http://dn.codegear.com/article/31863 UML Distilled Ch. 3, by M. Fowler 1 Big questions What is UML?
Lab 17: Building a 4-Digit 7-Segment LED Decoder
Phys2303 L.A. Bumm [Nexys 1.1.2] Lab 17 (p1) Lab 17: Building a 4-Digit 7-Segment LED Decoder In this lab your will make 4 test circuits, the 4-digit 7-segment decoder, and demonstration circuit using
P3.8 INTEGRATING A DOPPLER SODAR WITH NUCLEAR POWER PLANT METEOROLOGICAL DATA. Thomas E. Bellinger
P3.8 INTEGRATING A DOPPLER SODAR WITH NUCLEAR POWER PLANT METEOROLOGICAL DATA Thomas E. Bellinger Illinois Emergency Management Agency Springfield, Illinois 1. INTRODUCTION A Doppler sodar owned by the
Types of UML Diagram. UML Diagrams 140703-OOAD. Computer Engineering Sem -IV
140703-OOAD Computer Engineering Sem -IV Introduction to UML - UML Unified Modeling Language diagram is designed to let developers and customers view a software system from a different perspective and
Scenario-based Requirements Engineering and User-Interface Design
Scenario-based Requirements Engineering and User-Interface Institut für Computertechnik ICT Institute of Computer Technology Hermann Kaindl Vienna University of Technology, ICT Austria [email protected]
Software Engineering. System Modeling
Software Engineering System Modeling 1 System modeling System modeling is the process of developing abstract models of a system, with each model presenting a different view or perspective of that system.
CHAPTER 14 Understanding an App s Architecture
CHAPTER 14 Understanding an App s Architecture Figure 14-1. This chapter examines the structure of an app from a programmer s perspective. It begins with the traditional analogy that an app is like a recipe
Object Oriented Programming. Risk Management
Section V: Object Oriented Programming Risk Management In theory, there is no difference between theory and practice. But, in practice, there is. - Jan van de Snepscheut 427 Chapter 21: Unified Modeling
Entity-Relationship Model. Purpose of E/R Model. Entity Sets
Entity-Relationship Model Diagrams Class hierarchies Weak entity sets 1 Purpose of E/R Model The E/R model allows us to sketch the design of a database informally. Designs are pictures called entityrelationship
How to Develop Work Breakdown Structures
How to Develop Work Breakdown Structures Michael D. Taylor Copyright 2003-2009 by Michael D. Taylor All Rights Reserved. No part of this work covered by the copyright hereon may be reproduced or used in
Application of UML in Real-Time Embedded Systems
Application of UML in Real-Time Embedded Systems Aman Kaur King s College London, London, UK Email: [email protected] Rajeev Arora Mechanical Engineering Department, Invertis University, Invertis Village,
Use Cases and Scenarios
Use Cases and Scenarios We Will Cover What is a use-case Use-case versus user interaction Use-Case diagrams The constructs in the use-case diagrams Capturing the use-case High-level use-case Extended use-case
Smart Thermostat page 1
Smart Thermostat page 1 3. APPROACH In today s home appliances market, automation is becoming the norm and Smart Thermostat is a typical automation appliance able to be applied easily at home. With Smart
Use Case Modeling. Software Development Life Cycle Training. Use Case Modeling. Set A: Requirements Analysis Part 3: Use Case Modeling
Software Development Life Cycle Training Set A: Requirements Analysis Part 3: Use Case Modeling Use Case Modeling There are several ways to capture and organize software system requirements. The first
PROJECT MANAGEMENT METHODOLOGY OF OBJECT- ORIENTED SOFTWARE DEVELOPMENT
PROJECT MANAGEMENT METHODOLOGY OF OBJECT- ORIENTED SOFTWARE DEVELOPMENT Ing. David BEDNÁŘ, Doctoral Degree Programme (2) Dept. of Information Systems, FIT, BUT E-mail: [email protected] Supervised by:
DESIGN AND IMPLEMENTATION OF LOW COST HOME SECURITY SYSTEM USING PIC MICROCONTROLLER ANDGSM NETWORK
DESIGN AND IMPLEMENTATION OF LOW COST HOME SECURITY SYSTEM USING PIC MICROCONTROLLER ANDGSM NETWORK Varun Goel 1, Vinni 2 Abhishek Goel 3 1,2,3 Electronics & Communication Engineering Department, Hindu
PRODUCTIVITY THROUGH INNOVATION 600 CONTROL DIRECT DRIVE TECHNICAL/OPERATION MANUAL
Rev. D PRODUCTIVITY THROUGH INNOVATION 600 CONTROL DIRECT DRIVE TECHNICAL/OPERATION MANUAL 10 BORIGHT AVENUE, KENILWORTH NEW JERSEY 07033 TELEPHONE: 800-524-0273 FAX: 908-686-9317 TABLE OF CONTENTS Page
How To Develop Software
Software Engineering Prof. N.L. Sarda Computer Science & Engineering Indian Institute of Technology, Bombay Lecture-4 Overview of Phases (Part - II) We studied the problem definition phase, with which
Computer Automation Techniques. Arthur Carroll
Computer Automation Techniques Arthur Carroll 1 Three Types of Computers Micro-Controller Single Board Computer Desktop Computer 2 The Micro-Controller Small inexpensive DIP or surface mount chips Roughly
-Helping to make your life betterwww.person-to-person.net
Household Telephone Management System Built on Interceptor ID Technology Owner/Operation Manual Telephone Management System- Model P2P101 Call Receiver - Model P2P301 (Receiver may be sold separately)
Using Use Cases on Agile Projects
Using Use Cases on Agile Projects Ivar Jacobson with Ian Spence Agenda What are agile teams looking for? Cards, conversations, and confirmations Knowing what to do and when it s done Being agile with use
Relative Humidity Calibration Kit
Revised 6.8.12 Relative Humidity Calibration Kit For Calibrating All RH Measuring Kestrel Meters Model Numbers 3000, 3500, 4000, 4200, 4250, 4300, 4400, 4500 2011 Nielsen-Kellerman Co. While the calibration
II. Conceptual Modeling
II. Conceptual Modeling Engineering Software Models in Software Engineering What is Conceptual Modeling? Origins 2003 John Mylopoulos and Steve Easterbrook Conceptual Modeling -- 1 Engineering Software
USB-500/600 Series Low-Cost Data Loggers and Accessories
Low-Cost Data Loggers and Accessories Features Stand-alone, remote data loggers and portable logger assistant Measure temperature, humidity, voltage, current, or event/state change 1 or 2 channels Low
User's Guide. Integrating Sound Level Datalogger. Model 407780. Introduction
User's Guide 99 Washington Street Melrose, MA 02176 Phone 781-665-1400 Toll Free 1-800-517-8431 Visit us at www.testequipmentdepot.com Back to the Extech 407780 Product Page Integrating Sound Level Datalogger
Rose/Architect: a tool to visualize architecture
Published in the Proceedings of the 32 nd Annual Hawaii International Conference on Systems Sciences (HICSS 99) Rose/Architect: a tool to visualize architecture Alexander Egyed University of Southern California
Pipette Tracker Pipette and Volumetric Calibration Software The Instrument Interfacing Experts A Fully Automated Pipette Calibration Solution Regular performance testing and calibration of liquid handling
