Artifact 1c605288a8a176850f3fc4ea1e9b49c5f7a800ad053819517a13d87bc7c39824:
- Executable file mttroot/mtt/lib/comp/compound/Chemical/Rate/Rate_cr.r — part of check-in [b864a7bf65] at 2000-05-19 19:54:50 on branch origin/master — Initial revision (user: gawthrop@users.sourceforge.net, size: 348) [annotate] [blame] [check-ins using]
%% 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;