Title: | Design of Rotatable Central Composite Experiments and Response Surface Analysis |
---|---|
Description: | Produces tables with the level of replication (number of replicates) and the experimental uncoded values of the quantitative factors to be used for rotatable Central Composite Design (CCD) experimentation and a 2-D contour plot of the corresponding variance of the predicted response according to Mead et al. (2012) <doi:10.1017/CBO9781139020879> design_ccd(), and analyzes CCD data with response surface methodology ccd_analysis(). A rotatable CCD provides values of the variance of the predicted response that are concentrically distributed around the average treatment combination used in the experimentation, which with uniform precision (implied by the use of several replicates at the average treatment combination) improves greatly the search and finding of an optimum response. These properties of a rotatable CCD represent undeniable advantages over the classical factorial design, as discussed by Panneton et al. (1999) <doi:10.13031/2013.13267> and Mead et al. (2012) <doi:10.1017/CBO9781139020879.018> among others. |
Authors: | Timothy Schwinghamer [aut, cre], Dutilleul Pierre [aut, cph] |
Maintainer: | Timothy Schwinghamer <[email protected]> |
License: | MIT + file LICENSE |
Version: | 1.1.0 |
Built: | 2024-12-25 06:50:59 UTC |
Source: | CRAN |
For the simultaneous production of response surface analysis output by rsm used in combination with graphics in the second-order polynomial approach. The predictor variables must be named “Factor1”, “Factor2”, etc., while the response variable must be named “Response”. The output includes regression model fitting and plot of the fitted response surface.
ccd_analysis(x)
ccd_analysis(x)
x |
the matrix of experimental data that contains columns with the uncoded levels for each experimental factor and the observed values for the response variable in the rightmost column. |
The user will be prompted to enter “1” for a 3-D plot of the response surface, or “2” to plot the contour of the predicted variance of the response
“Data.For.Analysis”, includes the data set and the coding coefficients for the transformation of the independent factors
“Response.Surface.Summary”, includes the response surface for variable, hypothesis tests for linear, quadratic, and crossproduct terms, lack of fit test, parameter estimates, the factor ANOVA table, canonical analysis, and eigenvectors
Mead, R., Gilmour, S. G., and Mead, A. 2012. Statistical Principles for the Design of Experiments: Applications to Real Experiments. Cambridge University Press, Cambridge.
Panneton, B., Philion, H., Dutilleul, P., Theriault, R., and Khelifi, M. 1999. Full factorial design versus central composite design: Statistical comparison and experimental implications for spray droplet deposition. Transactions of the American Society of Agricultural Engineers 42:877-883.
if(interactive()){ ccd_analysis(ExampleData) }
if(interactive()){ ccd_analysis(ExampleData) }
Defines a rotatable central composite design (CCD) for experimentation with k quantitative factors and j replicates of the central point (which corresponds to the ‘average treatment combination’).
design_ccd(j, k)
design_ccd(j, k)
j |
the number of replicates of the central point |
k |
the number of quantitative factors used or studied in the experimentation. |
Three output tables containing the level of replication (number of replicates) and the experimental uncoded values of the quantitative factors to be used for experimentation and one plot showing the corresponding variance of the predicted response.
“Factorial.Points”, the first table which contains the treatment combinations for a 2^k factorial design (which, in coded form, corresponds to the vertices of a square, a cube, or a hyper-cube when k = 2, 3 and more).
“Axial.Points”, the second table which contains 2k axial or “star” points.
“Central.Point”, the third table which contains the number of replicates for the central point, coded (0, 0, 0).
Mead, R., Gilmour, S. G., and Mead, A. 2012. Statistical Principles for the Design of Experiments: Applications to Real Experiments. Cambridge University Press, Cambridge.
Panneton, B., Philion, H., Dutilleul, P., Theriault, R., and Khelifi, M. 1999. Full factorial design versus central composite design: Statistical comparison and experimental implications for spray droplet deposition. Transactions of the American Society of Agricultural Engineers 42:877-883.
#Enter the function as shown below. The user will be prompted to input smallest #and greatest values for each factor that will be used for experimentation. if(interactive()){ design_ccd(5, 3) }
#Enter the function as shown below. The user will be prompted to input smallest #and greatest values for each factor that will be used for experimentation. if(interactive()){ design_ccd(5, 3) }
This example uses experimental data published in Czitrom and Spagon (1997), Statistical Case Studies for Industrial Process Improvement that describes a semiconductor wafer processing experiment. A goal of this experiment was to fit response surface models to the deposition layer stress as a function of two particular controllable factors of the chemical vapor deposition (CVD) reactor process. These factors were pressure (measured in torr) and the ratio of the gaseous reactants hydrogen gas and tungsten(VI) fluoride.
ExampleData
ExampleData
A data frame with three columns and ten rows of values
Pressure measured in torr
The ratio of gaseous reactants. The smallest and greatest values for the ratios of hydrogen gas to tungsten(VI) fluoride were chosen to be 2 and 10.
Deposition layer stress
Czitrom, V., and Spagon, P. D., (1997), Statistical Case Studies for Industrial Process Improvement, Philadelphia, PA, ASA-SIAM Series on Statistics and Applied Probability.
A package for the planning of experiments following rotatable central composite designs (CCDs) and the analysis of CCD experimental data with response surface methodology.
design_ccd()
, for the number of values and the experimental uncoded values for
each of the k quantitative factors
ccd_analysis()
, for response surface analysis, including the regression model
fitting and plot of the fitted response surface
Mead, R., Gilmour, S. G., and Mead, A. 2012. Statistical Principles for the Design of Experiments: Applications to Real Experiments. Cambridge University Press, Cambridge.
Panneton, B., Philion, H., Dutilleul, P., Theriault, R., and Khelifi, M. 1999. Full factorial design versus central composite design: Statistical comparison and experimental implications for spray droplet deposition. Transactions of the American Society of Agricultural Engineers 42:877-883.