Sei sulla pagina 1di 17

ST2103 – Computer Aided Design : Unit-4 Optimization

UNIT 4

BASIC CONCEPTS OF LINEAR PROGRAMMING

Objectives

After studying this unit you should be able to:

• Understand the basic concept of Linear Programming


• Analyze the uses of Linear Programming
• Know the different concepts of standard form and augmented form problems.
• Have the knowledge of complementary slackness theorem

Structure

o Introduction
o Uses of Linear Programming
o Standard form
o Augmented form
o Duality
o Special cases
o Complementary slackness
o Summary
o Further readings

INTRODUCTION

In mathematics, linear programming (LP) is a technique for optimization of a


linear objective function, subject to linear equality and linear inequality constraints.
Informally, linear programming determines the way to achieve the best outcome (such as
maximum profit or lowest cost) in a given mathematical model and given some list of
requirements represented as linear equations.

More formally, given a polytope (for example, a polygon or a polyhedron), and a


real-valued affine function

defined on this polytope, a linear programming method will find a point in the polytope
where this function has the smallest (or largest) value. Such points may not exist, but if
they do, searching through the polytope vertices is guaranteed to find at least one of
them.Linear programs are problems that can be expressed in canonical form:

Maximize
Subject to

Prepared based on syllabus 2015-2016 curriculum | <A. VIJAY, ASST. PROF./CIVIL SRMIST
@VJENGR>
ST2103 – Computer Aided Design : Unit-4 Optimization

X represents the vector of variables (to be determined), while c and b are vectors of
(known) coefficients and A is a (known) matrix of coefficients. The expression to be
maximized or minimized is called the objective function ( in this case). The equations
are the constraints which specify a convex polyhedron over which the objective
function is to be optimized.

Linear programming can be applied to various fields of study. Most extensively it


is used in business and economic situations, but can also be utilized for some engineering
problems. Some industries that use linear programming models include transportation,
energy, telecommunications, and manufacturing. It has proved useful in modeling diverse
types of problems in planning, routing, scheduling, assignment, and design.

Theory

Geometrically, the linear constraints define a convex polyhedron, which is called


the feasible region. Since the objective function is also linear, hence a convex function,
all local optima are automatically global optima (by the KKT theorem). The linearity of
the objective function also implies that the set of optimal solutions is the convex hull of a
finite set of points - usually a single point.

There are two situations in which no optimal solution can be found. First, if the
constraints contradict each other (for instance, x ≥ 2 and x ≤ 1) then the feasible region is
empty and there can be no optimal solution, since there are no solutions at all. In this
case, the LP is said to be infeasible.

Alternatively, the polyhedron can be unbounded in the direction of the objective


function (for example: maximize x1 + 3 x2 subject to x1 ≥ 0, x2 ≥ 0, x1 + x2 ≥ 10), in which
case there is no optimal solution since solutions with arbitrarily high values of the
objective function can be constructed.

Barring these two pathological conditions (which are often ruled out by resource
constraints integral to the problem being represented, as above), the optimum is always
attained at a vertex of the polyhedron. However, the optimum is not necessarily unique: it
is possible to have a set of optimal solutions covering an edge or face of the polyhedron,
or even the entire polyhedron (This last situation would occur if the objective function
were constant).

USES OF LINEAR PROGRAMMING

Linear programming is a considerable field of optimization for several reasons.


Many practical problems in operations research can be expressed as linear programming
problems. Certain special cases of linear programming, such as network flow problems
and multicommodity flow problems are considered important enough to have generated
much research on specialized algorithms for their solution. A number of algorithms for
other types of optimization problems work by solving LP problems as sub-problems.
Historically, ideas from linear programming have inspired many of the central concepts

Prepared based on syllabus 2015-2016 curriculum | <A. VIJAY, ASST. PROF./CIVIL SRMIST
@VJENGR>
ST2103 – Computer Aided Design : Unit-4 Optimization

of optimization theory, such as duality, decomposition, and the importance of convexity


and its generalizations. Likewise, linear programming is heavily used in microeconomics
and company management, such as planning, production, transportation, technology and
other issues. Although the modern management issues are ever-changing, most
companies would like to maximize profits or minimize costs with limited resources.
Therefore, many issues can boil down to linear programming problems.

STANDARD FORM

Standard form is the usual and most intuitive form of describing a linear programming
problem. It consists of the following three parts:

• A linear function to be maximized

e.g. maximize

• Problem constraints of the following form

e.g.

• Non-negative variables

e.g.

The problem is usually expressed in matrix form, and then becomes:

maximize
subject to

Other forms, such as minimization problems, problems with constraints on alternative


forms, as well as problems involving negative variables can always be rewritten into an
equivalent problem in standard form.

Example 1

Suppose that a farmer has a piece of farm land, say A square kilometres large, to
be planted with either wheat or barley or some combination of the two. The farmer has a
limited permissible amount F of fertilizer and P of insecticide which can be used, each of
which is required in different amounts per unit area for wheat (F1, P1) and barley (F2, P2).
Let S1 be the selling price of wheat, and S2 the price of barley. If we denote the area
planted with wheat and barley by x1 and x2 respectively, then the optimal number of

Prepared based on syllabus 2015-2016 curriculum | <A. VIJAY, ASST. PROF./CIVIL SRMIST
@VJENGR>
ST2103 – Computer Aided Design : Unit-4 Optimization

square kilometres to plant with wheat vs barley can be expressed as a linear programming
problem:

(maximize the revenue — revenue is the "objective


maximize
function")
subject
(limit on total area)
to
(limit on fertilizer)
(limit on insecticide)
(cannot plant a negative area)

Which in matrix form becomes:

maximize

subject to

AUGMENTED FORM (SLACK FORM)

Linear programming problems must be converted into augmented form before


being solved by the simplex algorithm. This form introduces non-negative slack variables
to replace inequalities with equalities in the constraints. The problem can then be written
in the following form:

Maximize Z in:

where are the newly introduced slack variables, and Z is the variable to be maximized.

Example 2

The example above becomes as follows when converted into augmented form:

maximize (objective function)


subject to (augmented constraint)
(augmented constraint)
(augmented constraint)

Prepared based on syllabus 2015-2016 curriculum | <A. VIJAY, ASST. PROF./CIVIL SRMIST
@VJENGR>
ST2103 – Computer Aided Design : Unit-4 Optimization

where are (non-negative) slack variables.

Which in matrix form becomes:

Maximize Z in:

DUALITY

Every linear programming problem, referred to as a primal problem, can be


converted into a dual problem, which provides an upper bound to the optimal value of the
primal problem. In matrix form, we can express the primal problem as:

maximize
subject to

The corresponding dual problem is:

minimize
subject to

where y is used instead of x as variable vector.

There are two ideas fundamental to duality theory. One is the fact that the dual of
a dual linear program is the original primal linear program. Additionally, every feasible
solution for a linear program gives a bound on the optimal value of the objective function
of its dual. The weak duality theorem states that the objective function value of the dual
at any feasible solution is always greater than or equal to the objective function value of
the primal at any feasible solution. The strong duality theorem states that if the primal has
an optimal solution, x*, then the dual also has an optimal solution, y*, such that
cTx*=bTy*.

A linear program can also be unbounded or infeasible. Duality theory tells us that
if the primal is unbounded then the dual is infeasible by the weak duality theorem.
Likewise, if the dual is unbounded, then the primal must be infeasible. However, it is
possible for both the dual and the primal to be infeasible (See also Farkas' lemma).

Prepared based on syllabus 2015-2016 curriculum | <A. VIJAY, ASST. PROF./CIVIL SRMIST
@VJENGR>
ST2103 – Computer Aided Design : Unit-4 Optimization

Example 3

Revisit the above example of the farmer who may grow wheat and barley with the
set provision of some A land, F fertilizer and P insecticide. Assume now that unit prices
for each of these means of production (inputs) are set by a planning board. The planning
board's job is to minimize the total cost of procuring the set amounts of inputs while
providing the farmer with a floor on the unit price of each of his crops (outputs), S1 for
wheat and S2 for barley. This corresponds to the following linear programming problem:

(minimize the total cost of the means of production as


minimize
the "objective function")
subject
(the farmer must receive no less than S1 for his wheat)
to
(the farmer must receive no less than S2 for his barley)
(prices cannot be negative)

Which in matrix form becomes:

minimize

subject to

The primal problem deals with physical quantities. With all inputs available in
limited quantities, and assuming the unit prices of all outputs is known, what quantities of
outputs to produce so as to maximize total revenue? The dual problem deals with
economic values. With floor guarantees on all output unit prices, and assuming the
available quantity of all inputs is known, what input unit pricing scheme to set so as to
minimize total expenditure?

To each variable in the primal space corresponds an inequality to satisfy in the


dual space, both indexed by output type. To each inequality to satisfy in the primal space
corresponds a variable in the dual space, both indexed by input type.

The coefficients which bound the inequalities in the primal space are used to
compute the objective in the dual space, input quantities in this example. The coefficients
used to compute the objective in the primal space bound the inequalities in the dual
space, output unit prices in this example.

Both the primal and the dual problems make use of the same matrix. In the primal
space, this matrix expresses the consumption of physical quantities of inputs necessary to
produce set quantities of outputs. In the dual space, it expresses the creation of the
economic values associated with the outputs from set input unit prices.

Prepared based on syllabus 2015-2016 curriculum | <A. VIJAY, ASST. PROF./CIVIL SRMIST
@VJENGR>
ST2103 – Computer Aided Design : Unit-4 Optimization

Since each inequality can be replaced by an equality and a slack variable, this
means each primal variable corresponds to a dual slack variable, and each dual variable
corresponds to a primal slack variable. This relation allows us to complementary
slackness.

SPECIAL CASES

A packing LP is a linear program of the form

maximize
subject to

such that the matrix A and the vectors b and c are non-negative.

The dual of a packing LP is a covering LP, a linear program of the form

minimize
subject to

such that the matrix A and the vectors b and c are non-negative.

Example 4

Covering and packing LPs commonly arise as a linear programming relaxation of


a combinatorial problem. For example, the LP relaxation of set packing problem,
independent set problem, or matching is a packing LP. The LP relaxation of set cover
problem, vertex cover problem, or dominating set problem is a covering LP.

Finding a fractional coloring of a graph is another example of a covering LP. In


this case, there is one constraint for each vertex of the graph and one variable for each
independent set of the graph.

COMPLEMENTARY SLACKNESS

It is possible to obtain an optimal solution to the dual when only an optimal


solution to the primal is known using the complementary slackness theorem. The theorem
states:

Suppose that x = (x1, x2, . . ., xn) is primal feasible and that y = (y1, y2, . . . , ym) is
dual feasible. Let (w1, w2, . . ., wm) denote the corresponding primal slack variables, and
let (z1, z2, . . . , zn) denote the corresponding dual slack variables. Then x and y are
optimal for their respective problems if and only if xjzj = 0, for j = 1, 2, . . . , n, wiyi = 0,
for i = 1, 2, . . . , m.

Prepared based on syllabus 2015-2016 curriculum | <A. VIJAY, ASST. PROF./CIVIL SRMIST
@VJENGR>
ST2103 – Computer Aided Design : Unit-4 Optimization

So if the ith slack variable of the primal is not zero, then the ith variable of the dual
is equal zero. Likewise, if the jth slack variable of the dual is not zero, then the jth variable
of the primal is equal to zero.

SUMMARY

Linear programming is an important field of optimization for several reasons.


Many practical problems in operations research can be expressed as linear programming
problems. Followed by the basic concept the concepts of duality, standard form and
augmented form have described in the chapter.
The different kind of problems can be solved using Linear Programming approach
is discussed in special case section. Further the theorem of Complementary slackness was
discussed in brief to have more clear understanding of solution to Linear programming
problems.

The Simplex Method

The Simplex Method is based on the Gauss-Jordan elimination method and


provides solutions to programming problems when the number of variables or constraints
is large. Beginning at some initial feasible solution, each iteration progresses to another
corner point with an improved value of the objective function. The iteration is terminated
when the optimal solution is reached, if it exists.

A standard maximization problem is one in which


1) The objective function is to be maximized.
2) All the variables involved in the problem are nonnegative.
3) Each linear constraint may be written so that the expression involving the variables is
less than or equal to a nonnegative constant.

A slack variable is a nonnegative variable inserted in order to write a linear


equation corresponding to a linear inequality to set up the Simplex Method.

The variables associated with unit columns are called basic variables; all other
variables are called nonbasic variables.

A solution obtained by setting the nonbasic variables equal to zero is a basic


solution of the system.

Selecting the Pivot Element


1) Select the pivot column: Locate the most negative entry to the left of the vertical
line in the last row. The column containing this entry is the pivot column. If
there is more than one such column, choose any one.
2) Select the pivot row: Divide each positive entry in the pivot column into its
corresponding entry in the column of constants. The pivot row is the row
corresponding to the smallest ratio thus obtained. If there is more than one such
entry, choose any one.

Prepared based on syllabus 2015-2016 curriculum | <A. VIJAY, ASST. PROF./CIVIL SRMIST
@VJENGR>
ST2103 – Computer Aided Design : Unit-4 Optimization

The pivot element is the element common to both the pivot column and the pivot row.

Example 1: Maximize P = 3x + 2y
Subject to 2x + 3y ≤ 12
2x + y ≤ 8
x ≥ 0, y ≥ 0

Setting Up the Initial Simplex Tableau


1) Transform the system of linear inequalities into a system of linear equations by
introducing slack variables.
2) Rewrite the objective function
P = c1 x1 + c 2 x 2 +    + c n x n
in the form
− c1 x1 − c 2 x 2 −    − c n x n + P = 0
where all the variables are on the left and the coefficient of P is +1. Write this
equation below the equations of step 1.
3) Write the augmented matrix associated with this system of linear equations.

The Simplex Method


1) Set up the initial simplex tableau.
2) Determine whether the optimal solution has been reached by examining all
entries in the last row to the left of the vertical line.
a. If all the entries are nonnegative, the optimal solution has been reached.
Proceed to step 4.
b. If there are one or more negative entries, the optimal solution has not been
reached. Proceed to step 3.

Prepared based on syllabus 2015-2016 curriculum | <A. VIJAY, ASST. PROF./CIVIL SRMIST
@VJENGR>
ST2103 – Computer Aided Design : Unit-4 Optimization

3) Perform the pivot operation. Locate the pivot element and convert it to a 1 by
dividing all the elements in the pivot row by the pivot element. Using row
operations, convert the pivot column into a unit column by adding suitable
multiplies of the pivot row to each of the other rows as required. Return to step 2.
4) Determine the optimal solution(s). The value of the variable heading each unit
column is given by the entry lying in the column of constants in the row
containing the 1. The variables heading columns not in unit form are assigned the
value zero.

Definition of a Project

The Project Management Institute defines a project as follows:


A Project is a unique undertaking with a defined starting point and duration directed at
achieving defined objectives, utilizing finite or infinite resources.

The key parts of this definition:


1. A project has a unique objective.
2. A project has a definite start, duration and finish. It has a temporary rather
than open-ended duration.

Some examples of projects are:


• Building a house
• Relocating a data center
• Writing a book
• Developing a software program

Project Management

Project management is the management of an organized set of activities directed


toward a common goal, using specialized management structures and techniques. It
includes:

Determining project objectives

What is the goal (or goals) of the project? Examples of project goals include
building a bridge, relocating the MIS department to a new site or installing a new phone
system. More importantly, some examples of things that are NOT projects include
scheduling the usage for a training facility or scheduling engineers in a technical service
department. These are not projects because they do not meet all the criteria of a project.
They do not have a definitive start, finish, and duration.

Prepared based on syllabus 2015-2016 curriculum | <A. VIJAY, ASST. PROF./CIVIL SRMIST
@VJENGR>
ST2103 – Computer Aided Design : Unit-4 Optimization

Managing budgets and resources

Projects do not get done without resources to do them. To ensure successful


completion of a project, it is important to estimate correctly the number of personnel and
the amount of equipment needed. With this, it is important to realize the cost of the
project. Some projects can be completed in a shorter time by increasing the manpower on
the project. However, doing this also increases the cost. One of the project manager’s
jobs is to maintain a balance between reducing costs and reducing the time to complete
the project.

Reporting Progress

Reporting progress is a key to project management. It is essential that key players


in a project know what is happening, and whether they are on track, behind, or ahead of
schedule. By reviewing progress on a regular basis, you can try to avoid possible
problems in advance. For example, if you notice that a certain task was scheduled to take
10 days to accomplish, but on day 5 only 25% of the work was finished, you could
possibly re-allocate resources to that task in order to complete it on time.

Evaluating efficiency and effectiveness

During and after a project, it is important to review and analyze the performance
on the project. This information can provide valuable insight into possible changes to
make for future projects. For example, your project was to build a house, and one of the
steps involved was landscaping. After the project is finished, you notice that it took less
time to do the landscaping than you originally planned. This information could be
valuable if you build another house, because you could reduce the time allocated for
landscaping. By constantly reviewing the efficiency and effectiveness of your project,
you can more accurately plan future projects.

Project Managers

Project managers are responsible for managing projects. They coordinate projects
and related tasks, but do not usually have direct management responsibilities for
resources assigned to their project. The resources involved in one project may not be the
same resources involved in another project. Project managers focus only on work that is
specific to their project, and are primarily task and time-constrained: “How do I ensure
my project gets finished in the shortest amount of time?” is a question on every project
manager’s mind each day.

Critical Path Method (CPM)

The definitions and calculations in this section assume a simple classical project
consisting of a set of tasks, task dependencies, and task constraints.

Prepared based on syllabus 2015-2016 curriculum | <A. VIJAY, ASST. PROF./CIVIL SRMIST
@VJENGR>
ST2103 – Computer Aided Design : Unit-4 Optimization

A task dependency (relationship) occurs if the start or finish of one task (the
successor task) depends on the start or finish of another task (the predecessor task). For
example, if Task B can start when Task A finishes or later, then Task A is a predecessor
of Task B with a Finish-to-Start (FS) relationship. Other relationships are SS (Start-to-
Start), FF (Finish-to-Finish), and SF (Start-to-Finish). Lag or Lead (negative Lag) can be
specified in a relationship to allow the successor to start later or earlier than the original
plain relationship. For example, an SF relationship with negative 2 days of lag means that
the successor can start 2 days before the predecessor finishes, or later.

A task constraint limits when the task can occur, independent of other tasks. For
example, if a task cannot start any earlier than 1/1/98, then it would have a "Start No
Earlier Than" (SNET) type of constraint with a constraint date of 1/1/98.

The Critical Path Method (CPM) is a method of calculating the total duration of
a project based on a specified project start date and on the individual duration of tasks
and on their dependencies. CPM also provides useful information about how far a task
can slip into the future before it moves other tasks or makes the project finish later.
For a specified project start date and a set of tasks along with their dependencies and
constraints, the CPM method calculates the following:

• The earliest date each task can start and finish, and the earliest date the project can
finish.
• The latest date each task can start and finish, without causing the project to finish
later.
• How far into the future each task can slip without causing any other task to finish
later. [those statements are identical!].
• Which tasks are critical, for example, which tasks will cause the project to finish later
if they slip.

Task A task dependency describes how a task is related to the start or finish of
Dependency another task. Microsoft Project provides four task dependencies you can use to
connect a series of tasks in a schedule. By using these dependencies effectively,
you can modify the critical path and shorten your project schedule slack.
Lag Time A delay between tasks that have a dependency. For example, if you need a two-
day delay between the finish of one task and the start of another, you can
establish a finish-to-start relationship and specify a two-day lag time. You enter
lag time as a positive value relationship.
Predecessor A task whose start or finish determines the start or finish of another task.
Successor A task that cannot start or finish until another task starts or finishes.
Early Start The Early Start field contains the earliest date that a task could possibly begin,
based on the early start dates of predecessor and successor tasks, and other
constraints. Early Start is calculated as follows: When you first create a task, its
early start date is the same as the scheduled start date. As you link the task to
predecessors and successors and apply any other constraints, Microsoft Project
calculates the early start date as the earliest possible date this task could be
started, if all predecessor and successor tasks also start on their early start dates.
If there is a leveling delay on the task, this is also figured into the early start
date.

Prepared based on syllabus 2015-2016 curriculum | <A. VIJAY, ASST. PROF./CIVIL SRMIST
@VJENGR>
ST2103 – Computer Aided Design : Unit-4 Optimization

Early Finish The Early Finish field contains the earliest date that a task could possibly finish,
based on early finish dates of predecessor and successor tasks, other constraints,
and any leveling delay.
Late Start The Late Start field contains the latest date that a task can start without delaying
the finish of the project. This date is based on the task’s start date, as well as the
late start and late finish dates of predecessor and successor tasks, and other
constraints.
Late Finish The Late Finish field contains the latest date that a task can finish without
delaying the finish of the project. This date is based on the task’s late start date,
as well as the late start and late finish dates of predecessor and successor tasks,
and other constraints.
Critical task A task that must be completed on schedule for the project to finish on time. If a
critical task is delayed, the project completion date is also delayed. A series of
critical tasks makes up a project's critical path.
Critical path The series of tasks that must be completed on schedule for a project to finish on
schedule. Each task on the critical path is a critical task. Most tasks in a typical
project have some slack and can therefore be delayed a little without affecting
the project finish date. Those tasks that cannot be delayed without affecting the
project finish date are the critical tasks. As you modify tasks to resolve over
allocations or other problems in your schedule, be aware of the critical tasks and
that changes to them will affect your project finish date.
Critical Path A project management method of calculating the total duration of a project
Method based on individual task durations and their interdependencies.
(CPM)
Slack (or The amount of time a task can slip before it affects another task's dates or the
Float) project finish date. Slack is sometimes referred to as float time.
Free Slack The amount of time a task can slip before it delays another task.
Total Slack The amount of time a task can slip before it delays the project finish date. When
the total slack is negative, the duration for a task is too long for its successor to
begin on the date required by its constraint.

CPM produces results by doing a Forward Pass calculation followed by a Backward Pass
calculation:

• Forward Pass: All tasks are calculated to start as early as possible for the specified
task dependencies and constraints, and the specified project start date. The latest
finishing task(s) determines the project finish date. The Early Start and Early Finish
dates for each task are calculated during this pass.
• Backward Pass: All tasks are calculated to finish as late as possible for the specified
task dependencies and constraints, and the project finish date calculated from the
Forward pass. The Late Start and Late Finish dates are calculated for each task during
this pass.

Example
A project starts on Jan 1, 1998 and every day is a working day. The four columns
below are the specified task ID, Duration (in days), Predecessors, and Successors. All the
relationships are FS, and there are no other constraints (like Start No Earlier Than).

Prepared based on syllabus 2015-2016 curriculum | <A. VIJAY, ASST. PROF./CIVIL SRMIST
@VJENGR>
ST2103 – Computer Aided Design : Unit-4 Optimization

ID Dur. Pred. Succ.


1 2d 3
2 4d 3
3 3d 1,2
4 2d 5
5 3d 4

Forward Pass:

In the table below, the cells filled with the letter "e" show how the task Early Start
and Early Finish dates are calculated during the forward pass. Notice that tasks with no
predecessors start at the specified project start date (Jan 1), and other tasks are scheduled
as early as possible for the specified relationships. The calculated project finish date is
Jan 7.

ID Dur Pre Succ Jan Jan Jan Jan Jan Jan Jan Jan Jan Earl Early Free
. d. . 1 2 3 4 5 6 7 8 9 y Finish Slack
Start
1 2d 3 E E Jan 1 Jan 2 2d
2 4d 3 E E E E Jan 1 Jan 4 0d
3 3d 1,2 E E E Jan 5 Jan 7 0d
4 2d 5 E E Jan 1 Jan 2 0d
5 3d 4 E E E Jan 3 Jan 5 2d

Backward Pass:
In the table below, the cells filled with the letter "X" show how the task Late Start
and Late Finish dates are calculated during the backward pass. Notice that tasks with no
successors start at the project finish date that was calculated during the forward pass (Jan
7), and that other tasks are scheduled as late as possible for the specified relationships.

ID Dur Pre Succ Jan Jan Jan Jan Jan Jan Jan Late Late
. d. . 1 2 3 4 5 6 7 Start Finish
1 2d 3 X X Jan 3 Jan 4
2 4d 3 X X X X Jan 1 Jan 4
3 3d 1,2 X X X Jan 5 Jan 7
4 2d 5 X X Jan 3 Jan 4
5 3d 4 X X X Jan 5 Jan 7

A comparison of the Early and Late dates for a task is used to compute its Total
Slack and to determine if the task is critical (Zero Total Slack). From the table below,
you can see that the only critical tasks are task 2 and 3, and that they form a single critical
path from the start to the end of the project.

Prepared based on syllabus 2015-2016 curriculum | <A. VIJAY, ASST. PROF./CIVIL SRMIST
@VJENGR>
ST2103 – Computer Aided Design : Unit-4 Optimization

ID Dur Pre Succ Jan Jan Jan Jan Jan Jan Jan Total Critica
. d. . 1 2 3 4 5 6 7 Slack l
1 2d 3 E E 2d No
X X
2 4d 3 E E E E 0d Yes
X X X X
3 3d 1,2 E E E 0d Yes
X X X
4 2d 5 E E 2d No
X X
5 3d 4 E E E 2d No
X X X

More complicated projects can have more than one critical path. In non-classical
projects with more advanced features, a project might have no critical path. See the
Scheduling module for examples.

PERT-project evaluation and review technique

PERT charts depict task, duration, and dependency information. Each chart starts
with an initiation node from which the first task, or tasks, originates. If multiple tasks
can begin at the same time, they are all started from the node and branch, or fork out from
the start point.

The Figure above is an example of a PERT chart. Each task is represented by a


line which states its name or other identifier, its duration, the number of people assigned
to it, and in some cases the initials of the personnel assigned. The other end of the task
line is terminated by another node which identifies the start of another task, or the
beginning of any slack time. Slack time is waiting time between tasks.

Each task is connected to its successor tasks in this manner forming a network of
nodes and connecting lines. The chart is complete when all final tasks come together at
the completion node. Where slack time exists between the end of one task and the start of

Prepared based on syllabus 2015-2016 curriculum | <A. VIJAY, ASST. PROF./CIVIL SRMIST
@VJENGR>
ST2103 – Computer Aided Design : Unit-4 Optimization

another, the usual method is to draw a broken, or dotted line between the end of the first
task and the start of the next dependent task.

A PERT chart (Figure below) may have multiple parallel or interconnecting


networks of tasks. Where the project has scheduled milestones, checkpoints, or review
points (all of which are highly recommended in any project schedule), the PERT chart
will note that all tasks up to that point terminate at the review node.

It should be noted at this point that project review, approvals, user reviews, etc.,
all take time. This time should never be underestimated when drawing up the project
plan. It is not unusual for a review to take a week or even two. Obtaining management
and user approvals may take even longer.

When drawing up the plan, be sure to include tasks for documentation writing,
documentation editing, project report writing and editing, and report reproduction. These
tasks are usually time consuming so don't underestimate how long it will take to complete
them.

PERT charts are usually drawn on ruled paper with the horizontal axis indicating
time period divisions in days, weeks, months, etc. Although it is possible to draw a PERT
chart for an entire project, the usual practice is to break the plans into smaller, more
meaningful parts. This is very helpful if the chart has to be redrawn for any reason, such
as skipped or incorrectly estimated tasks.

Many PERT charts terminate at the major review points, such as at the end of the
analysis stage or even at the end of the feasibility analysis. Many organizations include

Prepared based on syllabus 2015-2016 curriculum | <A. VIJAY, ASST. PROF./CIVIL SRMIST
@VJENGR>
ST2103 – Computer Aided Design : Unit-4 Optimization

funding reviews in the project life cycle. Where this is the case, each chart terminates in a
funding review node.

Funding reviews can affect a project in that they may either increase funding, in
which case more people may be made available, or they may decrease funding, in which
case fewer people may be available. Obviously more or less people will affect the length
of time it takes to complete a project.

Prepared based on syllabus 2015-2016 curriculum | <A. VIJAY, ASST. PROF./CIVIL SRMIST
@VJENGR>

Potrebbero piacerti anche