|
2.
Measurement Process Characterization
2.2. Statistical control of a measurement process 2.2.3. How is short-term variability controlled?
|
|||
| Degradation of instrument or anomalous behavior on one occasion |
Changes in the precision of the instrument, particularly anomalies and
degradation, must be addressed. Changes in precision can be detected
by a statistical control procedure based on the F-distribution
where the short-term standard deviations are plotted on the control
chart.
The base line for this type of control chart is the pooled standard deviation, s1, as defined in Data collection and analysis. |
||
| Example of control chart for a mass balance | Only the upper control limit, UCL, is of interest for detecting degradation in the instrument. As long as the short-term standard deviations fall within the upper control limit established from historical data, there is reason for confidence that the precision of the instrument has not degraded (i.e., common cause variations). | ||
| The control limit is based on the F-distribution |
The control limit is
where the quantity under the radical is the upper
The justification for this control limit, as opposed to the more conventional standard deviation control limit, is that we are essentially performing the following hypothesis test:
1 =
2
Ha: 2 >
1
1
is the population value for the s1 defined above and
2 is the
population value for the standard deviation of the current values being
tested. Generally, s1 is based on sufficient
historical data that it is reasonable to make the assumption that
1 is a
"known" value.
The upper control limit above is then derived based on the standard F-test for equal standard deviations. Justification and details of this derivation are given in Cameron and Hailes (1974). |
||
| Run software macro for computing the F factor |
Dataplot can compute the value of the
F-statistic. For the case where alpha = 0.05; J = 6; K = 6,
the commands
let alpha = 0.05 let alphau = 1 - alpha let j = 6 let k = 6 let v1 = j-1 let v2 = k*(v1) let F = fppf(alphau, v1, v2) return the following value: THE COMPUTED VALUE OF THE CONSTANT F = 0.2533555E+01 |
||