You are on page 1of 1

As far as I could

I needed the armfield


I got it rightly
But gave it wrongly
TR Saponification
% Rxn Data Analysis
clc;clear;close all;
load('rxn.mat')
T = rxn(:,length(rxn(1,:)));
T(T==0) = [];
TK = T + 273;
Tav = mean(TK);
Tsd = std(TK);

%Problem with zeros


%Kelvin

F0 = [5.8142 2.8893 .5493 1.1343 .8418 .2568 1.4268];


C0 = .00495;
%molar
V = 1000;
%mL
t = (1:2312)';

%mL/s

fX = @(cond,T)( (cond - 0.195.*(1+.01184.*(T-294)).*C0)./...


(.07.*(1+.0284.*(T-294)).*C0 - 0.195.*(1+.01184.*(T-294)).*C0));
fk = @(F0,X)( F0.*X./(V*C0^2.*(1-X.^2)));
for i = 1:7
cond(:,i) = rxn(:,i);
X(:,i) = fX(cond(:,i),Tav);
hold on
plot(t,X(:,i))
end

%conductivities uS/cm

You might also like