Example 9.6 Nonstandard Precedence Relationships
This example illustrates the use of the LAG= option to indicate nonstandard precedence relationships between activities. Consider the widget manufacturing project described in the earlier examples. Some of the precedence constraints between the activities may be nonstandard or have a nonzero lag value. For example, the activity 'Init. Prod.' may not be able to start until 2 days after the completion of the activity 'Facility.' The Network data set is displayed in Output 9.6.1. The variable lagdur indicates the type of relationship between the activities specified in the variables task and succ.
The following statements invoke PROC NETDRAW with the LAG= option. The resulting network diagram is shown in Output 9.6.2.
pattern1 v=e c=green;
title 'Widget Manufacture';
title2 h=1.5 'Nonstandard Precedence Constraints';
proc netdraw graphics data=widglag;
actnet / act=task
succ=succ
lag=lagdur
pcompress
htext=3 boxht=3 arrowhead=2
xbetween=7 ybetween=9
centerid
separatearcs;
run;
Output 9.6.1
Network with Nonstandard Precedence Constraints
Approve Plan |
5 |
Drawings |
|
Approve Plan |
5 |
Study Market |
|
Approve Plan |
5 |
Write Specs |
|
Drawings |
10 |
Prototype |
|
Study Market |
5 |
Mkt. Strat. |
|
Write Specs |
5 |
Prototype |
|
Prototype |
15 |
Materials |
ss_9 |
Prototype |
15 |
Facility |
ss_9 |
Mkt. Strat. |
10 |
Test Market |
|
Mkt. Strat. |
10 |
Marketing |
|
Materials |
10 |
Init. Prod. |
|
Facility |
10 |
Init. Prod. |
fs_2 |
Init. Prod. |
10 |
Test Market |
|
Init. Prod. |
10 |
Marketing |
|
Init. Prod. |
10 |
Evaluate |
|
Evaluate |
10 |
Changes |
ss_6 |
Test Market |
15 |
Changes |
ff_3 |
Changes |
5 |
Production |
|
Production |
0 |
|
|
Marketing |
0 |
|
|
Output 9.6.2
Network Diagram with Nonstandard Precedence Constraints
Copyright © SAS Institute, Inc. All Rights Reserved.