• Keine Ergebnisse gefunden

First-order Model

N/A
N/A
Protected

Academic year: 2022

Aktie "First-order Model"

Copied!
16
0
0

Wird geladen.... (Jetzt Volltext ansehen)

Volltext

(1)

Response Surface Designs

A response variable 𝑌 depends on several explanatory variables. The goal is to optimize the value of 𝑌 .

𝑌 = 𝑓(𝑥1, 𝑥2) + 𝜖, function f is unknown.

𝑓(𝑥1, 𝑥2) is called response surface.

ETH – p. 1/16

(2)

Maximal yield of a chemical process

The yield 𝑌 of a chemical process depends on reaction time (A) and temperature (B). Current conditions are 35 min. and 155˚C.

22-factorial:

- 6

r

r r

r

30 𝑥1

𝑥2

40 160

150

𝐵

𝐴

𝑥1 = time 35 5

𝑥2 = temp 155 5

(3)

First-order Model

run A B 𝑥1 𝑥2 𝑦

1 30 150 –1 –1 39.3 2 40 150 +1 –1 40.9 3 30 160 –1 +1 40.0 4 40 160 +1 +1 41.5

First-order model: 𝑌 = 𝛽0 + 𝛽1𝑥1 + 𝛽2𝑥2 + 𝜖

ETH – p. 3/16

(4)

R Output

> summary(mod1)

Call: lm(formula = y ˜ x1 + x2)

Coefficients:

Estimate Std. Error t value Pr(>|t|) (Intercept) 40.425 0.025 1617 0.000394 ***

x1 0.775 0.025 31 0.020529 *

x2 0.325 0.025 13 0.048875 *

Residual standard error: 0.05 on 1 df

Multiple R-squared: 0.9991, Adj R-squared: 0.9973 F-statistic: 565 on 2 and 1 DF, p-value: 0.02974

(5)

First order response

ˆ

𝑦 = 40.425 + 0.775𝑥1 + 0.325𝑥2

ETH – p. 5/16

(6)

Model with interaction

𝑌 = 𝛽0 + 𝛽1𝑥1 + 𝛽2𝑥2 + 𝛽12𝑥1𝑥2 + 𝜖 𝛽ˆ12 = 0.025, perfect fit, no estimation of 𝜎.

Additional runs are necessary to estimate the

experimental error and test the interaction effect.

We add five observations at the center to get an independent estimation of 𝜎 and check the fit of the first-order model or a curvature.

(7)

Factorial with center points

r

r r

r

r

30 40

160

150

𝐵

𝐴

A B 𝑥1 𝑥2 𝑦

35 155 0 0 40.3 35 155 0 0 40.5 35 155 0 0 40.7 35 155 0 0 40.2 35 155 0 0 40.6

ETH – p. 7/16

(8)

Checking Curvature and Interaction

Second-order model

𝑌 = 𝛽0 + 𝛽1𝑥1 + 𝛽2𝑥2 + 𝛽12𝑥1𝑥2 + 𝛽11𝑥21 + 𝛽22𝑥22 + 𝜖

Estimation of curvature: mean in factorial – mean at center = ¯𝑦𝑓 𝑦¯𝑐 = 40.425 40.46 = 0.035.

¯

𝑦𝑓 𝑦¯𝑐 is an estimate for 𝛽11 + 𝛽22

Estimation of 𝜎2:

𝑀 𝑆𝑟𝑒𝑠 =

5

(𝑦𝑖 𝑦¯𝑐)2

4 = 0.043

Can construct confidence intervals for 𝛽12 and

𝛽11 + 𝛽22. First-order model is adequate.

(9)

Method of steepest ascent

ETH – p. 9/16

(10)

Example: 𝑦 ˆ = 40 . 44 + 0 . 775 𝑥

1

+ 0 . 325 𝑥

2

contour lines 𝑥2 =

0.775

0.325𝑥1 + 𝑐,

direction of steepest ascent: 00..325775 = 0.42

additional observations:

A B 𝑥1 𝑥2 𝑦

35 155 0 0

40 157.1 1 0.42 40.5 45 159.2 2 0.84 51.3 50 161.3 3 1.26 59.6 55 163.4 4 1.68 67.1 60 165.5 5 2.10 63.6

(11)

Second-order model around (55,163)

Central Composite Design

r r

r r

(-1,-1) (1,-1)

(-1,1) (1,1)

(0,0)

r r

r r r

ETH – p. 11/16

(12)

Data

Time Temperature 𝑥1 𝑥2 Yield

50 160 -1 -1 65.3

60 160 1 -1 68.2

50 170 -1 1 66.0

60 170 1 1 69.8

48 165 -1.414 0 64.5

62 165 1.414 0 69.0

55 158 0 -1.414 64.0

55 172 0 1.414 68.5

55 165 0 0 68.9

55 165 0 0 69.7

55 165 0 0 68.5

55 165 0 0 69.4

55 165 0 0 69.0

(13)

R Output

> summary(mod1)

Call: lm(formula=yield˜x1+x2+I(x1ˆ2)+I(x2ˆ2)+x1*x2) Coefficients:

Value Std.Error t value Pr(>|t|) (Intercept) 69.0999 0.3506 197.0815 0.0000

x1 1.6331 0.2772 5.8913 0.0006 x2 1.0830 0.2772 3.9070 0.0058 I(x1ˆ2) -0.9688 0.2973 -3.2585 0.0139 I(x2ˆ2) -1.2189 0.2973 -4.0996 0.0046 x1:x2 0.2250 0.3920 0.5740 0.5839 Res. st.error: 0.784 on 7 df Mult R-Sq: 0.9143

F-statistic: 14.93 on 5 and 7 df, p-value 0.00129

ETH – p. 13/16

(14)

Response surface

Time

Temper ature Yield

(15)

Contour lines

Time

Temperature

65.5 66 66

66.5 66.5

67

67.5 68

68.5 69 69.5

70

55 60 65

160165170

ETH – p. 15/16

(16)

R code

mod1=lm(Yield˜x1+x2+I(x1ˆ2)+I(x2ˆ2)+x1*x2,data=surf) x=seq(-1,1.5,0.2); y=seq(-1,1.5,0.2)

f = function(x,y) {new.x=data.frame(x1=x,x2=y) predict(mod1,new.x)}

z = outer(x,y,f)

persp(x,y,z,theta=30,phi=30,expand=0.5,col="lightblue", xlab="Time",ylab="Temperature",zlab="Yield")

image(x,y,z,axes=F,xlab="Time",ylab="Temperature")

contour(x,y,z,levels=seq(65.5,80,by=0.5),add=T,col="peru") axis(1,at=seq(-1,1,by=1),labels=c(55,60,65))

axis(2,at=seq(-1,1,by=1),labels=c(160,165,170)) box()

Referenzen

ÄHNLICHE DOKUMENTE

If the indirect object is a pronoun, this word order is more common..  You'll give him

If the indirect object is a pronoun, this word order is more common..  You'll give him

On the contrary, rapamycin, a macrolide chemically related to FK506 and produced by the bacterium Streptomyces sirolimus, binds to FKBP-Iike FK506, but the FKBPI rapamycin

different aspects of the complex world / of software systems one “big” logic covering everything would be too clumsy good news: most of the logics are based on propositional

This paper presents a novel approach to transform platform-independent model transformation specifications into platform-specific model transformation specifications, which can

In the presence of equality, we can show the undecidability of satisfiability of GFU (and hence of TGF ) by a reduction from the tiling problem for an infinite grid [7]..

effect LeftUp causes Spill if OnTable before ¬RightUp (6) effect RightUp causes Spill if OnTable before ¬LeftUp (7) effect LeftUp causes ¬OnTable if > before ¬RightUp (8)

To cope with the notorious problem of self-justifying cycles, we use tech- niques known from translations of normal logic programs to logical theories: cyclic fluent dependencies in