HS-3000: Fit Method Comparison: Approximation on the Arm Model |
|||||
HS-3000: Fit Method Comparison: Approximation on the Arm Model |
In this tutorial, we will explain how to create approximations for the output responses of the arm example introduced in tutorial HS-2000: DOE Method Comparison: Arm Model Study, and discuss the differences between different Fit methods.
Before running this tutorial, you must complete tutorial HS-2000: DOE Method Comparison: Arm Model Study or you can import the archive file HS-2000.hstx, available in <hst.zip>/HS-3000/.
In HS-2000, we discovered that instead of the nine input variables, we could continue our studies just as effectively with six shapes since the others did not have a great influence on the output responses. This will save computational effort.
So, as from now, we have:
Length1: |
Lower Bound = -0.5, Initial Bound = 0.0, Upper Bound = 2.0 |
Length2: |
Lower Bound = 0.0, Initial Bound = 0.0, Upper Bound = 2.0 |
Length3: |
Lower Bound = -1.0, Initial Bound = 0.0, Upper Bound = 1.0 |
Length4: |
Lower Bound = -1.0, Initial Bound = 0.0, Upper Bound = 1.0 |
Length5: |
Lower Bound = -1.0, Initial Bound = 0.0, Upper Bound = 1.0 |
Radius1: |
Lower Bound = -2.0, Initial Bound = 0.0, Upper Bound = 2.0 |
Radius2: |
Lower Bound = -0.5, Initial Bound = 0.0, Upper Bound = 1.0 |
Radius3: |
Lower Bound = -0.5, Initial Bound = 0.0, Upper Bound = 1.0 |
Height: |
Lower Bound = -1.0, Initial Bound = 0.0, Upper Bound = 1.0 |
In this tutorial we will start with using Hammersley. The minimal required number of points to create a second order polynomial with N variables is (N + 1)*(N + 2)/2. Here we will use (N + 1)*(N + 2) = 7*8 = 56 runs. Using this matrix, we create Least Square Regression (LSR), Moving Least Square (MLSM), and HyperKriging approximations for both the output responses.
In order to create the approximations to be used as surrogate models, you will need to perform specific DOEs that will serve as the input matrix. You will need to run a DOE suitable to be used in response surface creation such as Hammersley or Latin Hypercube.
The image below illustrates a typical sampling of the Hammersley DOE with 56 Runs (Length 1 vs. Length 2).
|
Using the 56 runs from the Hammersley DOE as an Input Matrix and the 12 runs from an additional Hammersley DOE as a Validation Matrix (does not apply to LSR), create a full quadratic LSR, full quadratic MLSM, HyperKriging, and Radial Basis Functions.
Residuals for Max_Stress, Least Square Regression.
Diagnostics for Max_Stress, Least Square Regression.
|
The max percent of errors for the combined 56 + 12 run matrix (except for LSR, where this is not an option) are as shown below.
Percent of Error Value for Output Response Fits Obtained from Several Methods. From this table, we can observe that any of the above methods give good results for linear output responses such as volume. For nonlinear output responses such as stress, RBF and MLSM accuracy is the best. We can also observe these findings from the diagnostic tables below. R-Square value for Max Stress is 0.92 in LSR, 0.996 in MLSM, 0.999 in HK and 1.0 in RBF. LSR 2nd Order Diagnostics for Max_Stress MLSM 2nd Order Diagnostics for Max_Stress MLSM 2nd order Diagnostics for Volume HyperKriging Diagnostics for Max_Stress RBF Diagnostics for Max_Stress
|