1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
%% CR file for rate-of reaction component RATE
OPERATOR Rate;
% Reaction rate
FOR ALL k,q,h,n,Conc,Temp LET
Rate(k,q,h,n,flow,1,
Conc,effort,1,
Temp,effort,2
)
= k*Conc^n*e^(-q/Temp);
% Heat
FOR ALL k,q,h,n,Conc,Temp LET
Rate(k,q,h,n,flow,2,
Conc,effort,1,
Temp,effort,2
)
= k*Conc^n*h*e^(-q/Temp);
END;
|
|
|
|
|
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
%% CR file for rate-of reaction component RATE
OPERATOR Rate;
% Reaction rate
FOR ALL comp,k,q,h,n,Conc,Temp LET
Rate(comp,k,q,h,n,flow,1,
Conc,effort,1,
Temp,effort,2
)
= k*Conc^n*e^(-q/Temp);
% Heat
FOR ALL comp,k,q,h,n,Conc,Temp LET
Rate(comp,k,q,h,n,flow,2,
Conc,effort,1,
Temp,effort,2
)
= k*Conc^n*h*e^(-q/Temp);
END;
|