Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 4

T[K] Ccg T[K] Ccg

300 8.48x10-18 650 7.85x10-8


350 3.73x10-15 700 3.20x10-7
400 3.59x10-13 750 1.08x10-6
450 1.25x10-11 800 3.13x10-6
500 2.14x10-10 850 8.03x10-6
550 2.19x10-9 900 1.85x10-5
600 1.52x10-8 950 3.19x10-5
1000 7.67x10-5

%% Problema 9.2
clear all
clc
R=8.314; %Gas constant [J/mol-K]
T=300:50:1000; %Absolute temperature [K]
C_cg=27.4.*exp(-106300./(R.*T))
plot(C_cg,T)
xlabel('C_cg')
ylabel('Temperature, T[K]')
title('C_cg vs Temperature')
T[K] C Cweight
1000 0.0358 0.7693
1100 0.0491 1.0559
1200 0.0639 1.3748
1300 0.0799 1.7188
1400 0.0968 2.0813
1421 0.1004 2.1593

%% Problema 9.3
clear all
clc
R=8.314; %Gas constant [J/mol-K]
Q=28960; %[J/mol]
T=[1000, 1100, 1200, 1300, 1400, 1421]; %Absolute temperature [K]
C_gamma=1.165.*exp(-Q./(R.*T))
C_gweight=(12.01/55.845).*C_gamma.*100 %Weight percent carbon [%]
plot(T,C_gamma)
hold on
plot(T,C_gweight)
ylabel('C_gamma')
xlabel('Temperature, T[K]')
title('C_gamma vs Temperature')
Cgamma vs Temperature
1450

1400

1350

1300
Temperature, T[K]

1250

1200

1150

1100

1050

1000
0 0.02 0.04 0.06 0.08 0.1 0.12
Cg amma
%% Problema 8.6
clear all
clc
T=[233:10:283]
tau=[6.521,1.326,0.306,0.079,0.022,0.007]
T_1=1./T
tao_1=log(1./tau)
plot(tao_1,T_1)
xlabel('1/T, [1/K]')
ylabel('1/tau, [1/s]')
title('1/tau vs 1/T')

You might also like