Thanh Tran
2018-12-03 13:03:33 UTC
Dear all,
I'm trying to use the D-optimum design. In my data, the response is KIC,
and 4 factors are AC, AV, T, and Temp. A typical second-degree response
The result of the model:
KIC = 4.85 â 2.9AC +0.151 AV + 0.1094T
+ 0.0091Temp + 0.324 AC^2-0.0156V^2
- 10.00106T^2 - 0.0009Temp^2 + 0.0071ACÂŽAV
- 0.00087ACÂŽT -0.00083ACÂŽTemp â 0.0018AVÂŽT
+0.0015AVÂŽTemp â 0.000374 AV ÂŽ T
Based on the above response modelling, I want to determine levels of the
AC, AV, T, and Temp to have the Maximum value of KIC. The result running in
Minitab as is shown in Figure 1. In R, I try to compute an D-optimum design
+ c(4,4,30,5), # Smalesst values of AC,AV,T, and Temp
+ c(5,7,50,25), # Highest values of AC,AV,T, and Temp
+ c(3,3,3,3)) # Numbers of levels ofAC,AV,T, and Temp
I have the result as shown in Figure 2 but I cannot find out the optimum
design as shown in Figure 1 using Minitab.
If anyone has any experience about what would be the reason for error or
how I can solve it? I really appreciate your support and help.
Best regards,
Nhat Tran
Ps: I also added a CSV file for practicing R.
I'm trying to use the D-optimum design. In my data, the response is KIC,
and 4 factors are AC, AV, T, and Temp. A typical second-degree response
data<-read.csv("2.csv", header =T)
mod <- lm(KIC~AC+I(AC^2)+AV+I(AV^2)+T+I(T^2)+Temp+I(Temp^2)+AC:AV+AC:T+AC:Temp+AV:T+AV:Temp+T:Temp,
+ data = data)mod <- lm(KIC~AC+I(AC^2)+AV+I(AV^2)+T+I(T^2)+Temp+I(Temp^2)+AC:AV+AC:T+AC:Temp+AV:T+AV:Temp+T:Temp,
The result of the model:
KIC = 4.85 â 2.9AC +0.151 AV + 0.1094T
+ 0.0091Temp + 0.324 AC^2-0.0156V^2
- 10.00106T^2 - 0.0009Temp^2 + 0.0071ACÂŽAV
- 0.00087ACÂŽT -0.00083ACÂŽTemp â 0.0018AVÂŽT
+0.0015AVÂŽTemp â 0.000374 AV ÂŽ T
Based on the above response modelling, I want to determine levels of the
AC, AV, T, and Temp to have the Maximum value of KIC. The result running in
Minitab as is shown in Figure 1. In R, I try to compute an D-optimum design
attach(data)
F.trig <- F.cube
F.trip <-
F.cube(KIC~AC+I(AC^2)+AV+I(AV^2)+T+I(T^2)+Temp+I(Temp^2)+AC:AV+AC:T+AC:Temp+AV:T+AV:Temp+T:Temp,F.trig <- F.cube
F.trip <-
+ c(4,4,30,5), # Smalesst values of AC,AV,T, and Temp
+ c(5,7,50,25), # Highest values of AC,AV,T, and Temp
+ c(3,3,3,3)) # Numbers of levels ofAC,AV,T, and Temp
res.trip.D <- od.AA(F.trip,1,alg = "doom", crit = "D",
+ graph =1:7, t.max = 4)I have the result as shown in Figure 2 but I cannot find out the optimum
design as shown in Figure 1 using Minitab.
If anyone has any experience about what would be the reason for error or
how I can solve it? I really appreciate your support and help.
Best regards,
Nhat Tran
Ps: I also added a CSV file for practicing R.