Previous Page | Next Page

The FACTEX Procedure

Example 7.2 Resolution IV Augmented Design

[See RCBD in the SAS/QC Sample Library]Box, Hunter, and Hunter (1978) describe an injection molding experiment involving eight two-level factors: mold temperature (Temperature), moisture content (Moisture), holding pressure (HoldPress), cavity thickness (Thickness), booster pressure (BoostPress), cycle time (Time), screw speed (Speed), and gate size (Gate).

The design used has 16 runs and is of resolution 4; it is often denoted as . You can generate this design, shown in Output 7.2.1, with the following statements:

proc factex;
   factors Temperature Moisture HoldPress Thickness 
           BoostPress  Time     Speed     Gate;
   size design=16;                      
   model resolution=4;                 
   examine design aliasing;            
run;

The FACTORS statement lists factor names. The option DESIGN=16 of the SIZE statement specifies the design size. The RESOLUTION=4 specifies the resolution of the design. The EXAMINE statement lists points and aliasing.

Output 7.2.1 A Design
The FACTEX Procedure

Design Points
Experiment
Number
Temperature Moisture HoldPress Thickness BoostPress Time Speed Gate
1 -1 -1 -1 -1 -1 -1 -1 -1
2 -1 -1 -1 1 1 1 1 -1
3 -1 -1 1 -1 1 1 -1 1
4 -1 -1 1 1 -1 -1 1 1
5 -1 1 -1 -1 1 -1 1 1
6 -1 1 -1 1 -1 1 -1 1
7 -1 1 1 -1 -1 1 1 -1
8 -1 1 1 1 1 -1 -1 -1
9 1 -1 -1 -1 -1 1 1 1
10 1 -1 -1 1 1 -1 -1 1
11 1 -1 1 -1 1 -1 1 -1
12 1 -1 1 1 -1 1 -1 -1
13 1 1 -1 -1 1 1 -1 -1
14 1 1 -1 1 -1 -1 1 -1
15 1 1 1 -1 -1 -1 -1 1
16 1 1 1 1 1 1 1 1

The alias structure is shown in Output 7.2.2.

Output 7.2.2 Alias Structure for a Design
Aliasing Structure
Temperature
Moisture
HoldPress
Thickness
BoostPress
Time
Speed
Gate
Temperature*Moisture = HoldPress*Gate = Thickness*Speed = BoostPress*Time
Temperature*HoldPress = Moisture*Gate = Thickness*Time = BoostPress*Speed
Temperature*Thickness = Moisture*Speed = HoldPress*Time = BoostPress*Gate
Temperature*BoostPress = Moisture*Time = HoldPress*Speed = Thickness*Gate
Temperature*Time = Moisture*BoostPress = HoldPress*Thickness = Speed*Gate
Temperature*Speed = Moisture*Thickness = HoldPress*BoostPress = Time*Gate
Temperature*Gate = Moisture*HoldPress = Thickness*BoostPress = Time*Speed

Subsequent analysis of the data collected for the design suggests that HoldPress and BoostPress have statistically significant effects. There also seems to be significant effect associated with the sum of the aliased two-factor interactions Temperature*BoostPress, Temperature*Time, Moisture*Time, HoldPress*Speed, and Thickness*Gate. This chain of confounded interactions is identified in Output 7.2.2.

A few runs can be added to the design to distinguish between the effects due to these four interactions. You simply need a design in which any three of these effects are estimable, regardless of all other main effects and interactions. For example, the following statements generate a suitable set of runs (see Output 7.2.3):

proc factex;
   factors Temperature Moisture HoldPress Thickness 
           BoostPress  Time     Speed     Gate;
   model estimate=(Moisture*Time 
                   HoldPress*Speed 
                   Thickness*Gate);
   size design=4;                    
   examine design aliasing(2);      
run;                               

Output 7.2.3 Additional Runs to Resolve Ambiguities
The FACTEX Procedure

Design Points
Experiment
Number
Temperature Moisture HoldPress Thickness BoostPress Time Speed Gate
1 -1 -1 1 1 1 1 -1 1
2 -1 1 -1 -1 -1 -1 -1 1
3 1 -1 -1 -1 -1 -1 1 1
4 1 1 1 1 1 1 1 1

Output 7.2.4 shows the alias structure of the additional four-run experiment. Note that the alias link

Temperature*BoostPress=Moisture*Time=HoldPress*Speed=Thickness*Gate

found in the original design is broken. When these four runs are added to the original 16 runs, the four two-factor interactions can be estimated separately with the 20 runs.

Output 7.2.4 Alias Structure of the Additional Experiment
Aliasing Structure
0 = Gate = Temperature*Speed = HoldPress*Thickness = HoldPress*BoostPress = HoldPress*Time
= Thickness*BoostPress = Thickness*Time = BoostPress*Time
Temperature = Speed = Temperature*Gate = Moisture*HoldPress = Moisture*Thickness
= Moisture*BoostPress = Moisture*Time = Speed*Gate
Moisture = Temperature*HoldPress = Temperature*Thickness = Temperature*BoostPress
= Temperature*Time = Moisture*Gate = HoldPress*Speed = Thickness*Speed
= BoostPress*Speed = Time*Speed
HoldPress = Thickness = BoostPress = Time = Temperature*Moisture = Moisture*Speed
= HoldPress*Gate = Thickness*Gate = BoostPress*Gate = Time*Gate

Previous Page | Next Page | Top of Page