You are on page 1of 2

T = 303.15:1:307.

15;
R = [98.9,95.2,93.3,91.5,90.7];
grid on;
hold on;
plot (T,R, 'r');
B = (303.15*307.15)/(307-303)*log(98.9/90.7);
A = 98.9*exp(-B/303.15);
Rr = zeros(1,5);
for i=1:1:5
Rr(1,i) = A*exp(B/T(1,i));
end
hold on;
plot(T,Rr, 'b');

Rc = zeros(1,5);
for i=1:1:5
Rc(1,i) = 0.1309*exp(2007/T(1,i));
end
hold on;
plot(T,Rc, 'g');

Ti = (303.15+307.15)/2;

R1 = 0.1309*exp(2007/Ti)*(2007-2*Ti)/(2007+2*Ti)

General model:
f(x) = a*exp(b/x)
Coefficients (with 95% confidence bounds):
a= 0.1309 (-0.246, 0.5077)
b= 2007 (1128, 2885)
Goodness of fit:
SSE: 2.324
R-square: 0.946
Adjusted R-square: 0.928
RMSE: 0.8802

You might also like