2.3.5 Project planning

Size: px
Start display at page:

Download "2.3.5 Project planning"

Transcription

1 efinitions:..5 Project planning project consists of a set of m activities with their duration: activity i has duration d i, i = 1,..., m. estimate Some pairs of activities are subject to a precedence constraint: i j indicates that j can start only after the end of i. xample ctivities:,,,, Precedences:,,,,.. maldi Foundations of Operations Research Politecnico di Milano 1

2 Model project can be represented by a directed graph G = (N, ) : arc activity arc length = activity duration. To account for the precedence constraints, the arcs must be positioned so that: i j there exists a directed path where the arc associated to i preceeds the arc associated to j i j. maldi Foundations of Operations Research Politecnico di Milano

3 Therefore we have: Node v event corresponding to the end of all the activities (i, v) - (v) and hence to the possibile beginning of all those (v, j) + (v). - (v) v + (v). maldi Foundations of Operations Research Politecnico di Milano

4 xample ctivities:,,,, Precedences:,,,, ummy activities with duration = Property The graph G is acyclic (it is a G). y contradiction: if i1 1,..., jk ki there would be a logical contradiction.. maldi Foundations of Operations Research Politecnico di Milano

5 The above graph G can be simplified by contracting some arcs:! When simplifying the graph, pay attention not to introduce unwanted precedence constraints. If this dummy activity is maintained, unwanted is implied, besides,,,,.. maldi Foundations of Operations Research Politecnico di Milano 5

6 rtifical nodes and/or artificial arcs are introduced so that graph G contains a unique initial node s corresponding to the event beginning of the project, contains a unique final node t corresponding to the event end of the project, does not contain multiple arcs (with same endpoints). s t or s t. maldi Foundations of Operations Research Politecnico di Milano

7 Problem Given a project defined by its activities (with their durations) and precedence constraints, schedule the activities so as to minimize the overall project duration (the time needed to complete all activities). s t Property Minimum overall project duration = length of a longest path from s to t. Since any s-t path represents a sequence of activities that must be executed in the specified order, its length provides a lower bound on the minimum overall project duration.. maldi Foundations of Operations Research Politecnico di Milano 7

8 ritical path method (PM) etermines a schedule (a plan for executing the activities specifying the order and the alotted time) that minimizes the overall project duration, the slack of each activity, i.e., the amount of time by which its execution can be delayed, without affecting the overall minimum duration of the project. Initialization: onstruct the graph G representing the project and sort the nodes topologically.. maldi Foundations of Operations Research Politecnico di Milano 8

9 Phase I: onsider the nodes by increasing indices and, for each node h N, determine: the earliest time Tmin[h] at which the event associated to node h can occur ( Tmin[n] corresponds to the minimum overall project duration ). Phase II: onsider the nodes by decreasing indices and, for each node h N, determine: the latest time Tmax[h] at which the event associated to node h can occur without delaying the completion of the project beyond the minimum project duration. Phase III: For each activity (i, j), compute the slack ij = Tmax[j] Tmin[i] d ij.. maldi Foundations of Operations Research Politecnico di Milano 9

10 xample onsider the following project: ct. F G H I uration 1 Predecessors -,, F Precedence constraints:,,,,, F, G, G, H, F I etermine the overall minimum duration of the project and the slack for each activity.. maldi Foundations of Operations Research Politecnico di Milano 1

11 ctivities:,,,,, F, G, H, I Precedence constraints:,,,,, F, G, G, H, F I Graphical model: 1 5 F Precedence 7 H I G 1 8 ummy activities ( duration ). maldi Foundations of Operations Research Politecnico di Milano 11

12 xample 1 5 F 7 H G I 8 ummy activities ( duration ) Phase I: [, ] 1 5 [, ] [ 5, ] 7 [ 8, ] 1 8 [ 1, ] [ 11, ] [ Tmin[i], Tmax[i] ] [, ] [, ]. maldi Foundations of Operations Research Politecnico di Milano 1

13 Phase II: [, ] [, ] [ 5, ] 1 5 [, ] 7 [ 8, 9 ] 1 [, ] [ [ 1, 1, 1 ] 8 [[ 11, 11 ]] [ Tmin[i], Tmax[i] ]. maldi Foundations of Operations Research Politecnico di Milano 1

14 [, ] 1 5 [, ] [ 5, ] [, ] [ 8, 9 ] 7 1 [, ] [ 1, 1 ] 8 [ 11, 11 ] [ Tmin[i], Tmax[i] ] Longest path. maldi Foundations of Operations Research Politecnico di Milano 1

15 Pseudocode of critical path method (PM) Input Output G = (N, ) with n = N, duration d ij associated to each arc (i, j) Tmin[i] and Tmax[i] for i =1,, n GIN Order the nodes topologically; Tmin[1] := ; FOR h:= TO n O Tmin[h] := MX{ Tmin[i] + d ih : (i,h) - (h) }; N-FOR Tmax[n] := Tmin[n]; /* minimum project duration */ FOR h:=n 1 OWNTO 1 O Tmax[h] := MIN{ Tmax[j] d hj : (h,j) + (h) }; N-FOR N O(n+m) O(n+m) O(n+m) Overall complexity: O(m). maldi Foundations of Operations Research Politecnico di Milano 15

16 efinition: n activity (i, j) with zero slack ( ij = ) is critical. [, ] 1 5 [, ] [ 5, ] [ 8, 9 ] 7 1 [ 1, 1 ] 8 [ 11, 11 ] critical activities [ Tmin[i], Tmax[i] ] [, ] [, ] (, ) is not crtitical since = =1 7 = = 1 8 = = 1 Observation: Tmin[i] = Tmax[i] and Tmin[j] = Tmax[j] do not suffice to have: ij = Tmax[j] - Tmin[i] - d ij =!. maldi Foundations of Operations Research Politecnico di Milano 1

17 efinition: critical path is an s t path only composed of critical activities (one such path always exists). [, ] 1 5 [, ] [ 5, ] [, ] 7 [ 8, 9 ] 1 [, ] 8 [ 1, 1 ] [ 11, 11 ] [ Tmin[i], Tmax[i] ] critical path with minimum project duration =11. maldi Foundations of Operations Research Politecnico di Milano 17

18 Gantt charts Introduced in the 191s by Henry Gantt ( ). Provide temporal representations of the project. Gantt chart at earliest : each activity (i, j) starts at time Tmin[i] (i,j) d ij Tmin[i] Tmax[j] H 1 F I G F G H I maldi Foundations of Operations Research Politecnico di Milano 18

19 Gantt chart at latest : each activity (i, j) ends at time Tmax[j] (i,j) d ij Tmin[i] Tmax[j] H 1 F I F G G H I maldi Foundations of Operations Research Politecnico di Milano 19

2.3.4 Project planning

2.3.4 Project planning .. Project planning project consists of a set of m activities with their duration: activity i has duration d i, i =,..., m. estimate Some pairs of activities are subject to a precedence constraint: i j

More information

Project Scheduling. Introduction

Project Scheduling. Introduction Project Scheduling Introduction In chapter, the O and ON networks were presented, also the time and cost of individual activities based were calculated. Yet, however, we do not know how long is the total

More information

Large Scale Systems Design G52LSS

Large Scale Systems Design G52LSS LSS antt harts Lecture 8 antt harts and PM onstructing antt harts Staff Profile and Utilisation Learning outcomes: interpret the information in antt charts; construct antt charts following Pert/PM method;

More information

Goals of the Unit. spm - 2014 adolfo villafiorita - introduction to software project management

Goals of the Unit. spm - 2014 adolfo villafiorita - introduction to software project management Project Scheduling Goals of the Unit Making the WBS into a schedule Understanding dependencies between activities Learning the Critical Path technique Learning how to level resources!2 Initiate Plan Execute

More information

Large Scale Systems Design G52LSS

Large Scale Systems Design G52LSS Large Scale Systems esign 52LSS Lecture 6 Project Scheduling With PRT Project Scheduling PRT iagrams onstructing Pert iagrams Learning outcomes: describe the purpose and steps of project scheduling within

More information

Resources Management

Resources Management Resources Management. Introduction s we have seen in network scheduling, the basic inputs to criticalpath analysis are the individual project activities, their durations, and their dependency relationships.

More information

Software Engineering. Pert and Gantt exercises. Lecturer: Giuseppe Santucci

Software Engineering. Pert and Gantt exercises. Lecturer: Giuseppe Santucci Software Engineering Pert and Gantt exercises Lecturer: Giuseppe Santucci Degree of freedom! I.3a 3 3 I. I. 3 I.3b I.3c I.4 Exercise s goals. Draw a PERT network (AON) representing a project s characteristics.

More information

Project and Production Management Prof. Arun Kanda Department of Mechanical Engineering Indian Institute of Technology, Delhi

Project and Production Management Prof. Arun Kanda Department of Mechanical Engineering Indian Institute of Technology, Delhi Project and Production Management Prof. Arun Kanda Department of Mechanical Engineering Indian Institute of Technology, Delhi Lecture - 9 Basic Scheduling with A-O-A Networks Today we are going to be talking

More information

Project Planning Tools. GANTT Chart. Chapter 7 Project Planning. GANTT Chart (Figure 7.3) CPM Chart (Figure 7.12) PERT Chart (Figure 7.

Project Planning Tools. GANTT Chart. Chapter 7 Project Planning. GANTT Chart (Figure 7.3) CPM Chart (Figure 7.12) PERT Chart (Figure 7. Project Planning ools hapter 7 Project Planning Lecture 2 Project Planning nd Management ools GN hart (Figure 7.) PM hart (Figure 7.2) P hart (Figure 7.5) GN: eveloped by Henry Gantt PM: ritical Path Method

More information

Project Scheduling by PERT/CPM

Project Scheduling by PERT/CPM Project Scheduling by PERT/PM Reference ooks: nderson, Sweeney, and Williams, N INTROUTION TO MNGEMENT SIENE, QUNTITTIVE PPROHES TO EISION MKING, th edition, West Publishing ompany,99 Hamdy. Taha, OPERTIONS

More information

Project Planning and Scheduling

Project Planning and Scheduling Project Planning and Scheduling MFS606 Project Planning Preliminary Coordination Detailed Task Description Objectives Budgeting Scheduling Project Status Monitoring When, What, Who Project Termination

More information

2.8 An application of Dynamic Programming to machine renewal

2.8 An application of Dynamic Programming to machine renewal ex-.6-. Foundations of Operations Research Prof. E. Amaldi.6 Shortest paths with nonnegative costs Given the following graph, find a set of shortest paths from node to all the other nodes, using Dijkstra

More information

Operational Research. Project Menagement Method by CPM/ PERT

Operational Research. Project Menagement Method by CPM/ PERT Operational Research Project Menagement Method by CPM/ PERT Project definition A project is a series of activities directed to accomplishment of a desired objective. Plan your work first..then work your

More information

CRITICAL-PATH ANALYSIS FOR NETWORK SCHEDULING

CRITICAL-PATH ANALYSIS FOR NETWORK SCHEDULING CRITICAL-PATH ANALYSIS FOR NTWORK SCHULING From studying this section, you will be able to: - Perform CPM and PM analyses for AOA and AON networks; - Calculate the early / late times that an activity can

More information

Network Calculations

Network Calculations Network Calculations The concepts and graphical techniques described in this week s readings form the basis of the tools widely used today to manage large projects. There is no way of simplifying the tasks

More information

Project Time Management

Project Time Management Project Time Management Plan Schedule Management is the process of establishing the policies, procedures, and documentation for planning, developing, managing, executing, and controlling the project schedule.

More information

The work breakdown structure can be illustrated in a block diagram:

The work breakdown structure can be illustrated in a block diagram: 1 Project Management Tools for Project Management Work Breakdown Structure A complex project is made manageable by first breaking it down into individual components in a hierarchical structure, known as

More information

Scheduling Glossary Activity. A component of work performed during the course of a project.

Scheduling Glossary Activity. A component of work performed during the course of a project. Scheduling Glossary Activity. A component of work performed during the course of a project. Activity Attributes. Multiple attributes associated with each schedule activity that can be included within the

More information

Collaborative Scheduling using the CPM Method

Collaborative Scheduling using the CPM Method MnDOT Project Management Office Presents: Collaborative Scheduling using the CPM Method Presenter: Jonathan McNatty, PSP Senior Schedule Consultant DRMcNatty & Associates, Inc. Housekeeping Items Lines

More information

Project Planning. Lecture Objectives. Basic Reasons for Planning. Planning. Project Planning and Control System. Planning Steps

Project Planning. Lecture Objectives. Basic Reasons for Planning. Planning. Project Planning and Control System. Planning Steps Project Planning What are you going to do in the project? Lecture Objectives To discuss the tasks in planning a project To describe the tools that can be used for developing a project plan To illustrate

More information

Topic: The easiest way to calculate Critical Path, Total Float, Free Float, Early Start, Early Finish, Late Start, and Late Finish.

Topic: The easiest way to calculate Critical Path, Total Float, Free Float, Early Start, Early Finish, Late Start, and Late Finish. Hot Topics & hallenges Time Management Topic: The easiest way to calculate ritical Path, Total Float, Free Float, Early, Early, Late, and Late. Presenter: Sohel khter, PMP, N,ISMS PMP and Six Sigma instructor,

More information

Systems Analysis and Design

Systems Analysis and Design Systems Analysis and Design Slides adapted from Jeffrey A. Hoffer, University of Dayton Joey F. George, Florida State University Joseph S. Valacich, Washington State University Modern Systems Analysis

More information

MnDOT Project Management Office Presents: Schedule Float. Presenter: Jonathan McNatty, PSP Senior Schedule Consultant DRMcNatty & Associates, Inc.

MnDOT Project Management Office Presents: Schedule Float. Presenter: Jonathan McNatty, PSP Senior Schedule Consultant DRMcNatty & Associates, Inc. MnDOT Project Management Office Presents: Schedule Float Presenter: Jonathan McNatty, PSP Senior Schedule Consultant DRMcNatty & Associates, Inc. Housekeeping Items Lines will be muted during the webinar

More information

ME 407 Mechanical Engineering Design Spring 2016

ME 407 Mechanical Engineering Design Spring 2016 ME 407 Mechanical Engineering Design Spring 2016 Project Planning & Management Asst. Prof. Dr. Ulaş Yaman Acknowledgements to Dieter, Engineering Design, 4 th edition Ullman, The Mechanical Design Process,

More information

Unit 1: Project Planning and Scheduling

Unit 1: Project Planning and Scheduling Unit : Project Planning and Scheduling Objective Ð To provide a brief introduction to project planning and scheduling. The critical area where project management meets system development. ackground Most

More information

Importance of Project Schedules. matter what happens on a project. projects, especially during the second half of projects

Importance of Project Schedules. matter what happens on a project. projects, especially during the second half of projects Project Time Management Chapter 6 Importance of Project Schedules Managers often cite delivering projects on time as one of their biggest challenges Time has the least amount of flexibility; it passes

More information

5. Creating a Gantt Chart

5. Creating a Gantt Chart 5. Creating a Gantt Chart Whilst the network diagram is a useful way to describe how tasks are linked to each other, the Gantt chart is used to display the schedule of a project. The Gantt chart is the

More information

Time Planning and Control

Time Planning and Control TOBIC 4 TIM SCLD NTWORK 1 June 3013 Time Planning and Control Time-Scaled Network G404 NGINRING MNGMNT 1 TOBIC 4 TIM SCLD NTWORK 1 June 3013 Processes of Time Planning and Control 1. Visualize and define

More information

SYSM 6304: Risk and Decision Analysis Lecture 5: Methods of Risk Analysis

SYSM 6304: Risk and Decision Analysis Lecture 5: Methods of Risk Analysis SYSM 6304: Risk and Decision Analysis Lecture 5: Methods of Risk Analysis M. Vidyasagar Cecil & Ida Green Chair The University of Texas at Dallas Email: M.Vidyasagar@utdallas.edu October 17, 2015 Outline

More information

LECTURE 5: SOFTWARE PROJECT MANAGEMENT. Software Engineering Mike Wooldridge

LECTURE 5: SOFTWARE PROJECT MANAGEMENT. Software Engineering Mike Wooldridge LECTURE 5: SOFTWARE PROJECT MANAGEMENT Mike Wooldridge 1 Introduction The software crisis of the 1960s and 1970s was so called because of a string of high profile software project failures: over budget,

More information

Basic Concepts. Project Scheduling and Tracking. Why are Projects Late? Relationship between People and Effort

Basic Concepts. Project Scheduling and Tracking. Why are Projects Late? Relationship between People and Effort Basic s Project Scheduling and Tracking The process of building a schedule for any case study helps really understand how it s done. The basic idea is to get across to break the software project into well-defined

More information

Chapter 3 Managing the Information Systems (IS) Project

Chapter 3 Managing the Information Systems (IS) Project Content Chapter 3 Managing the Information Systems (IS) Project Process of managing IS projects Skills required to be an effective project manager Skills and activities of a project manager during project

More information

MnDOT Project Management Office Presents: Schedule Updates. Presenter: Eric Costantino Senior Schedule Consultant DRMcNatty & Associates, Inc.

MnDOT Project Management Office Presents: Schedule Updates. Presenter: Eric Costantino Senior Schedule Consultant DRMcNatty & Associates, Inc. MnDOT Project Management Office Presents: Schedule Updates Presenter: Eric Costantino Senior Schedule Consultant DRMcNatty & Associates, Inc. Housekeeping Items Lines will be muted during the webinar Questions

More information

PROJECT EVALUATION REVIEW TECHNIQUE (PERT) AND CRITICAL PATH METHOD (CPM)

PROJECT EVALUATION REVIEW TECHNIQUE (PERT) AND CRITICAL PATH METHOD (CPM) PROJECT EVALUATION REVIEW TECHNIQUE (PERT) AND CRITICAL PATH METHOD (CPM) Project Evaluation Review Technique (PERT) and Critical Path Method (CPM) are scheduling techniques used to plan, schedule, budget

More information

Chapter-6. Developing a Project Plan

Chapter-6. Developing a Project Plan MGMT 4135 Project Management Chapter-6 Where we are now Developing the Project Network Why? Graphical representation of the tasks to be completed Logical sequence of activities Determines dependencies

More information

Project Management Glossary

Project Management Glossary Project Management Glossary THE VOCABULARY OF ACHIEVEMENT RON BLACK THE MENTOR GROUP WWW.RONBLACK.COM 800-381-8686 This glossary is an excerpt from Ron Black s book, The Complete Idiot s Guide to Project

More information

5 INTEGER LINEAR PROGRAMMING (ILP) E. Amaldi Fondamenti di R.O. Politecnico di Milano 1

5 INTEGER LINEAR PROGRAMMING (ILP) E. Amaldi Fondamenti di R.O. Politecnico di Milano 1 5 INTEGER LINEAR PROGRAMMING (ILP) E. Amaldi Fondamenti di R.O. Politecnico di Milano 1 General Integer Linear Program: (ILP) min c T x Ax b x 0 integer Assumption: A, b integer The integrality condition

More information

Scheduling Shop Scheduling. Tim Nieberg

Scheduling Shop Scheduling. Tim Nieberg Scheduling Shop Scheduling Tim Nieberg Shop models: General Introduction Remark: Consider non preemptive problems with regular objectives Notation Shop Problems: m machines, n jobs 1,..., n operations

More information

Time Management II. http://lbgeeks.com/gitc/pmtime.php. June 5, 2008. Copyright 2008, Jason Paul Kazarian. All rights reserved.

Time Management II. http://lbgeeks.com/gitc/pmtime.php. June 5, 2008. Copyright 2008, Jason Paul Kazarian. All rights reserved. Time Management II http://lbgeeks.com/gitc/pmtime.php June 5, 2008 Copyright 2008, Jason Paul Kazarian. All rights reserved. Page 1 Outline Scheduling Methods Finding the Critical Path Scheduling Documentation

More information

Project Scheduling: PERT/CPM

Project Scheduling: PERT/CPM Project Scheduling: PERT/CPM CHAPTER 8 LEARNING OBJECTIVES After completing this chapter, you should be able to: 1. Describe the role and application of PERT/CPM for project scheduling. 2. Define a project

More information

A Computer Application for Scheduling in MS Project

A Computer Application for Scheduling in MS Project Comput. Sci. Appl. Volume 1, Number 5, 2014, pp. 309-318 Received: July 18, 2014; Published: November 25, 2014 Computer Science and Applications www.ethanpublishing.com Anabela Tereso, André Guedes and

More information

Scheduling Resources and Costs

Scheduling Resources and Costs Student Version CHAPTER EIGHT Scheduling Resources and Costs McGraw-Hill/Irwin Copyright 2011 by The McGraw-Hill Companies, Inc. All rights reserved. Gannt Chart Developed by Henry Gannt in 1916 is used

More information

Project Management Chapter 3

Project Management Chapter 3 Project Management Chapter 3 How Project Management fits the Operations Management Philosophy Operations As a Competitive Weapon Operations Strategy Project Management Process Strategy Process Analysis

More information

EdExcel Decision Mathematics 1

EdExcel Decision Mathematics 1 EdExcel Decision Mathematics 1 Notes and Examples Critical Path Analysis Section 1: Activity networks These notes contain subsections on Drawing an activity network Using dummy activities Analysing the

More information

Precedence Diagram Method. CSTM 462 Planning & Scheduling

Precedence Diagram Method. CSTM 462 Planning & Scheduling Precedence Diagram Method CSTM 462 Planning & Scheduling Precedence Diagramming Method (PDM) PDM is more flexible than AON or AOA networks because PDM allows the overlapping of concurrent activities.

More information

Network Diagram Critical Path Method Programme Evaluation and Review Technique and Reducing Project Duration

Network Diagram Critical Path Method Programme Evaluation and Review Technique and Reducing Project Duration Network Diagram Critical Path Method Programme Evaluation and Review Technique and Reducing Project Duration Prof. M. Rammohan Rao Former Dean Professor Emeritus Executive Director, Centre for Analytical

More information

Dashboards and Reporting for Program Management

Dashboards and Reporting for Program Management MnDOT Project Management Office Presents: Dashboards and Reporting for Program Management Presenter: Jonathan McNatty Senior Schedule Consultant DRMcNatty & Associates, Inc. Housekeeping Items Lines will

More information

12 CRITICAL PATH ANALYSIS

12 CRITICAL PATH ANALYSIS 1 RTL PT NLYSS hapter 1 ritical Path nalysis Objectives fter studying this chapter you should be able to construct activity networks; be able to find earliest and latest starting times; be able to identify

More information

MECH 896 Professional Development for MEng Students. Homework Discussion. Scheduling Overview. Winter 2015: Lecture #5 Project Time Management

MECH 896 Professional Development for MEng Students. Homework Discussion. Scheduling Overview. Winter 2015: Lecture #5 Project Time Management MECH 896 Professional Development for MEng Students Mohamed Hefny and Brian Surgenor (hefny@cs.queensu.ca and surgenor@me.queensu.ca) Winter : Lecture # Project Time Management Homework Discussion Homework

More information

ONLINE SUPPLEMENTAL BAPPENDIX PROJECT SCHEDULES WITH PERT/CPM CHARTS

ONLINE SUPPLEMENTAL BAPPENDIX PROJECT SCHEDULES WITH PERT/CPM CHARTS ONLINE SUPPLEMENTAL BAPPENDIX PROJECT SCHEDULES WITH PERT/CPM CHARTS Chapter 3 of Systems Analysis and Design in a Changing World explains the techniques and steps required to build a project schedule

More information

technical tips and tricks

technical tips and tricks technical tips and tricks Looking for schedule variances Document author: Produced by: Andy Jessop Project Learning International Limited The tips and tricks below are taken from Project Mentor, the smart

More information

A-1. Chapter 1. Project planning. Chapter 1. Festo Didactic Mechatronics

A-1. Chapter 1. Project planning. Chapter 1. Festo Didactic Mechatronics A-1 Project planning A-2 Mechatronics specialists are responsible for the complete service life of an industrial machine, from the initial planning phase through to its disassembly and disposal. This cycle

More information

Project Management Dr. James A. Bednar

Project Management Dr. James A. Bednar Project Management Dr. James A. Bednar jbednar@inf.ed.ac.uk http://homepages.inf.ed.ac.uk/jbednar SAPM Spring 2006: Project Management 1 Project Management A project is a temporary endeavour to produce

More information

Chapter 6: Project Time Management. King Fahd University of Petroleum & Minerals SWE 417: Software Project Management Semester: 072

Chapter 6: Project Time Management. King Fahd University of Petroleum & Minerals SWE 417: Software Project Management Semester: 072 Chapter 6: Project Time Management King Fahd University of Petroleum & Minerals SWE 417: Software Project Management Semester: 072 Learning Objectives Understand the importance of project schedules Define

More information

Use project management tools

Use project management tools Use project management tools Overview Using project management tools play a large role in all phases of a project - in planning, implementation, and evaluation. This resource will give you a basic understanding

More information

Time Management. Part 5 Schedule Development. Richard Boser

Time Management. Part 5 Schedule Development. Richard Boser Time Management Part 5 Schedule Development Richard Boser 6.5 Schedule Development Inputs Organizational Process Assets Scope Statement Activity List Activity Attributes Network Diagrams Resource Req ms

More information

Leaving Certificate Technology. Project Management. Student Workbook

Leaving Certificate Technology. Project Management. Student Workbook Leaving Certificate Technology Project Management Student Workbook Project Management Student notes Introduction Project management is the name given to a number of techniques used in industry to manage

More information

The Project Planning Process Group

The Project Planning Process Group 3 The Project Planning Process Group............................................... Terms you ll need to understand: Activity Activity attributes Activity list Activity on arrow diagram (AOA) Activity

More information

SESSION 4 PLANNING THE PROJECT PROJECT PLANNING DEFINITIONS

SESSION 4 PLANNING THE PROJECT PROJECT PLANNING DEFINITIONS SSSION 4 PLNNIN TH PROJT PROJT PLNNIN Scope planning Time planning ost planning Human resource planning Procurement planning Quality planning ommunication planning INITIONS The project plan is a list of

More information

Module 11. Software Project Planning. Version 2 CSE IIT, Kharagpur

Module 11. Software Project Planning. Version 2 CSE IIT, Kharagpur Module 11 Software Project Planning Lesson 29 Staffing Level Estimation and Scheduling Specific Instructional Objectives At the end of this lesson the student would be able to: Identify why careful planning

More information

BPEL disadvantage: more time to product BPEL advantage: better reusability, analysis

BPEL disadvantage: more time to product BPEL advantage: better reusability, analysis Modeling Page 1 To BPEL or not to BPEL? 5:56 PM To BPEL or not to BPEL? BPEL disadvantage: more time to product BPEL advantage: better reusability, analysis Modeling Page 2 A tale of two strategies 5:57

More information

Leaving Certificate Technology. Project Management. Teacher Notes

Leaving Certificate Technology. Project Management. Teacher Notes Leaving Certificate Technology Project Management Teacher Notes 1 Project Management This is the first of three key topics that form Project and Quality Management in the Technology Syllabus core. These

More information

Cambridge International AS and A Level Computer Science

Cambridge International AS and A Level Computer Science Topic support guide Cambridge International AS and A Level Computer Science 9608 For examination from 2017 Topic 4.4.3 Project management PERT and GANTT charts Cambridge International Examinations retains

More information

Chapter 11 Monte Carlo Simulation

Chapter 11 Monte Carlo Simulation Chapter 11 Monte Carlo Simulation 11.1 Introduction The basic idea of simulation is to build an experimental device, or simulator, that will act like (simulate) the system of interest in certain important

More information

Project Scheduling by Critical Path Method (CPM)

Project Scheduling by Critical Path Method (CPM) 12.1 Project Scheduling by Critical Path Method (CPM) Katta G. Murty Lecture slides CPM is application of DP to problems in Construction (project) Management. Many large construction projects going on

More information

Chapter 1.7 Project Management. 1. Project financing is one of the step of project management- State True or False

Chapter 1.7 Project Management. 1. Project financing is one of the step of project management- State True or False Chapter 1.7 Project Management Part I: Objective type questions and answers 1. Project financing is one of the step of project management- State True or False 2. Proposed new technologies, process modifications,

More information

Module 3: The Project Planning Stage

Module 3: The Project Planning Stage Overview Once you've initiated the project and gathered all relevant information, you'll then begin planning your project. The planning stage depends on the size of your project, how much information you

More information

PROJECT TIME MANAGEMENT. 1 www.pmtutor.org Powered by POeT Solvers Limited

PROJECT TIME MANAGEMENT. 1 www.pmtutor.org Powered by POeT Solvers Limited PROJECT TIME MANAGEMENT 1 www.pmtutor.org Powered by POeT Solvers Limited PROJECT TIME MANAGEMENT WHAT DOES THE TIME MANAGEMENT AREA ATTAIN? Manages the project schedule to ensure timely completion of

More information

Instruction Scheduling. Software Pipelining - 2

Instruction Scheduling. Software Pipelining - 2 and Software Pipelining - 2 Department of Computer Science and Automation Indian Institute of Science Bangalore 560 012 NPTEL Course on Principles of Compiler Design Outline Simple Basic Block Scheduling

More information

CRITICAL PATH METHOD (CPM) SCHEDULES

CRITICAL PATH METHOD (CPM) SCHEDULES 96 CRITICAL PATH METHOD (CPM) SCHEDULES How-to for Reading, Understanding, and Using CPM Schedules (without Direct Primavera Access.) 1 Objectives Learn to read, understand, and use CPM schedules (without

More information

SECTION 01320 - CONSTRUCTION PROGRESS DOCUMENTATION PART 1 - GENERAL 1.1 RELATED DOCUMENTS

SECTION 01320 - CONSTRUCTION PROGRESS DOCUMENTATION PART 1 - GENERAL 1.1 RELATED DOCUMENTS SECTION 01320 - CONSTRUCTION PROGRESS DOCUMENTATION PART 1 - GENERAL 1.1 RELATED DOCUMENTS A. Drawings and general provisions of the Contract, including General and Supplementary Conditions and other Division

More information

CRITICAL PATH ANALYSIS AND GANTT CHARTS

CRITICAL PATH ANALYSIS AND GANTT CHARTS CRITICAL PATH ANALYSIS AND GANTT CHARTS 1. An engineering project is modelled by the activity network shown in the figure above. The activities are represented by the arcs. The number in brackets on each

More information

Foundations of Operations Research

Foundations of Operations Research Foudatios of Operatios Research Master of Sciece i Computer Egieerig Roberto Cordoe roberto.cordoe@uimi.it Tuesday 13.15-15.15 Thursday 10.15-13.15 http://homes.di.uimi.it/~cordoe/courses/2014-for/2014-for.html

More information

Project management Project Management

Project management Project Management Project management Project Management Dr. James A. Bednar jbednar@inf.ed.ac.uk http://homepages.inf.ed.ac.uk/jbednar A project is a temporary endeavour to produce a unique product, service, or result (PMI

More information

Table of Contents Author s Preface... 3 Table of Contents... 5 Introduction... 6 Step 1: Define Activities... 7 Identify deliverables and decompose

Table of Contents Author s Preface... 3 Table of Contents... 5 Introduction... 6 Step 1: Define Activities... 7 Identify deliverables and decompose 1 2 Author s Preface The Medialogist s Guide to Project Time Management is developed in compliance with the 9 th semester Medialogy report The Medialogist s Guide to Project Time Management Introducing

More information

Graphical Project Planning Techniques: An Overview of Gantt, PERT, and CPM Charts Prepared for groups in ECE480 1/6/02, D. Grover

Graphical Project Planning Techniques: An Overview of Gantt, PERT, and CPM Charts Prepared for groups in ECE480 1/6/02, D. Grover Introduction/Purpose Graphical Project Planning Techniques: An Overview of Gantt, PERT, and CPM Charts Prepared for groups in ECE480 1/6/02, D. Grover The purpose of this brief tutorial is to present an

More information

Microsoft Project 2010

Microsoft Project 2010 Tutorial 1: Planning a Project Microsoft Project 2010 In Tutorial Section 1.1 you will: Learn project management terminology Understand the benefits of project management Explore the Project 2010 window

More information

Project Management 1. PROJECT MANAGEMENT...1 2. PROJECT ANALYSIS...3

Project Management 1. PROJECT MANAGEMENT...1 2. PROJECT ANALYSIS...3 Project Management What is a project? How to plan a project? How to schedule a project? How to control a project? 1. PROJECT MNGEMENT...1 2. PROJECT NLYSIS...3 3 PROJECT PLNNING...8 3.1 RESOURCE LLOCTION...8

More information

Object-Oriented Analysis. with the Unified Process. John W. Satzinger Southwest Missouri State University. Robert B. Jackson Brigham Young University

Object-Oriented Analysis. with the Unified Process. John W. Satzinger Southwest Missouri State University. Robert B. Jackson Brigham Young University Object-Oriented Analysis and Design with the Unified Process John W. Satzinger Southwest Missouri State University Robert B. Jackson Brigham Young University Stephen D. Burd University of New Mexico ALL

More information

Analysis of the critical path within a project with WinQSB software

Analysis of the critical path within a project with WinQSB software Analysis of the critical path within a project with WinQSB software GURAU MARIAN ANDREI, MELNIC LUCIA VIOLETA Faculty of Engineering and Technological Systems Management, Faculty of Mechanical Engineering

More information

Network analysis: P.E.R.T,C.P.M & Resource Allocation Some important definition:

Network analysis: P.E.R.T,C.P.M & Resource Allocation Some important definition: Network analysis: P.E.R.T,C.P.M & Resource Allocation Some important definition: 1. Activity : It is a particular work of a project which consumes some resources (in ) & time. It is shown as & represented

More information

SYSTEMS ANALYSIS AND DESIGN DO NOT COPY

SYSTEMS ANALYSIS AND DESIGN DO NOT COPY Systems Analysis and Design in a Changing World, Fourth Edition -488-6-5 Copyright 7 Thomson Course Technology. All rights reserved. FOURTH EDITION SYSTEMS ANALYSIS AND DESIGN IN A C HANGING W ORLD John

More information

8. Project Time Management

8. Project Time Management 8. Project Time Management Project Time Management closely coordinated Two basic approaches -bottom-up (analytical) -top-down (expert judgement) Processes required to ensure timely completion of the project

More information

SECTION 01311 - CONSTRUCTION SCHEDULE B. Part 1 - General... 1. 1.01 Work Included... 1. 1.02 Related Requirements... 1. 1.03 Reference Standards...

SECTION 01311 - CONSTRUCTION SCHEDULE B. Part 1 - General... 1. 1.01 Work Included... 1. 1.02 Related Requirements... 1. 1.03 Reference Standards... SECTION 01311 - CONSTRUCTION SCHEDULE B CONTENTS: Part 1 - General... 1 1.01 Work Included... 1 1.02 Related Requirements... 1 1.03 Reference Standards... 1 1.04 Quality Assurance... 1 1.05 Measurement

More information

Real Time Scheduling Basic Concepts. Radek Pelánek

Real Time Scheduling Basic Concepts. Radek Pelánek Real Time Scheduling Basic Concepts Radek Pelánek Basic Elements Model of RT System abstraction focus only on timing constraints idealization (e.g., zero switching time) Basic Elements Basic Notions task

More information

Dynamic programming formulation

Dynamic programming formulation 1.24 Lecture 14 Dynamic programming: Job scheduling Dynamic programming formulation To formulate a problem as a dynamic program: Sort by a criterion that will allow infeasible combinations to be eli minated

More information

Chapter 2: Project Time Management

Chapter 2: Project Time Management Chapter 2: Project Time Management Learning Objectives o o o o Understand the importance of project schedules and good project time management. Define activities as the basis for developing project schedules.

More information

Abstract Title: Planned Preemption for Flexible Resource Constrained Project Scheduling

Abstract Title: Planned Preemption for Flexible Resource Constrained Project Scheduling Abstract number: 015-0551 Abstract Title: Planned Preemption for Flexible Resource Constrained Project Scheduling Karuna Jain and Kanchan Joshi Shailesh J. Mehta School of Management, Indian Institute

More information

Network Planning and Analysis

Network Planning and Analysis 46 Network Planning and Analysis 1. Objective: What can you tell me about the project? When will the project finish? How long will the project take (project total duration)? 2. Why is this topic Important

More information

Scheduling 101 CPM Basics. Phoenix Project Management Systems, LLC www.phoenixcpm.com

Scheduling 101 CPM Basics. Phoenix Project Management Systems, LLC www.phoenixcpm.com Scheduling 101 CPM Basics Phoenix Project Management Systems, LLC www.phoenixcpm.com Scheduling 101 CPM Basics Getting Started with CPM This guide is intended as an introduction to the Critical Path Method

More information

ICT Project Management. Software Project Planning By J. Ogutu

ICT Project Management. Software Project Planning By J. Ogutu ICT Project Management Software Project Planning By J. Ogutu Overview Step Wise project planning framework Preparation of a software project plan Planning and scheduling the activities in software project

More information

Exercise 12 " Project Management "

Exercise 12  Project Management Universität Stuttgart Institute of Industrial Automation and Software Engineering Prof. Dr.-Ing. M. Weyrich Exercise 12 " Project Management " Question 12.1 Cost Estimation with COCOMO One of the methods

More information

Chapter 9 Computer Scheduling Projects should be scheduled one byte at a time

Chapter 9 Computer Scheduling Projects should be scheduled one byte at a time Chapter 9 Computer Scheduling Projects should be scheduled one byte at a time Computer Scheduling Critical path method (CPM) requires numerous computations to determine activity start and finish dates,

More information

Project management using Excel spreadsheets: The case of Jules Event Planning Company

Project management using Excel spreadsheets: The case of Jules Event Planning Company Project management using Excel spreadsheets: The case of Jules Event Planning Company ABSTRACT Raida Abuizam Purdue University Calumet Lin Zhao Purdue University Calumet The Jules Event Planning Company

More information

Deming s 14 Points for TQM

Deming s 14 Points for TQM 1 Deming s 14 Points for TQM 1. Constancy of purpose Create constancy of purpose for continual improvement of products and service to society, allocating resources to provide for long range needs rather

More information

College of Engineering and Applied Science University of Wisconsin -- Milwaukee

College of Engineering and Applied Science University of Wisconsin -- Milwaukee Edward A. Beimborn and W. Anthony Garvey College of Engineering and Applied Science University of Wisconsin -- Milwaukee The Blob Chart:: A Simplified Method of Allocating Resources over Time Edward Beimborn

More information

Finding the critical path in an activity network with time-switch constraints

Finding the critical path in an activity network with time-switch constraints European Journal of Operational Research 120 (2000) 603±613 www.elsevier.com/locate/orms Theory and Methodology Finding the critical path in an activity network with time-switch constraints Hsu-Hao Yang

More information

Chapter 6: Project Time Management

Chapter 6: Project Time Management CIS 486 Managing Information Systems Projects Fall 2003 (Chapter 6), PhD jwoo5@calstatela.edu California State University, LA Computer and Information System Department Chapter 6: Project Time Management

More information

Measuring Flexibility in Software Project Schedules

Measuring Flexibility in Software Project Schedules 1 Measuring Flexibility in Software Project Schedules Muhammad Ali Khan Department of Mathematics & Statistics University of Calgary, 2500 Campus Drive NW, Calgary AB, Canada T2N 1N4 muhammkh@ucalgary.ca

More information

PROGRAMMING TECHNIQUES. Chapter 5(Part 2)

PROGRAMMING TECHNIQUES. Chapter 5(Part 2) PROGRAMMING TECHNIQUES Chapter 5(Part 2) LEARNING OUTCOME At the end of this lesson, students will be able to: Understand the different types of planning techniques. Understand the network analysis. Formulate

More information