Artifact 461ff052532e21b111b2717eec90e8d4c585cfc0879a8b150659af1abfd30e5c:
- Executable file mtt/lib/comp/compound/Chemical/Rate/Rate_cr.r — part of check-in [af3953deae] at 2021-03-01 11:39:42 on branch master — Cleanup repository after cvs2git conversion. (user: jeff@gridfinity.com, size: 368) [annotate] [blame] [check-ins using] [more...]
- Executable file mttroot/mtt/lib/comp/compound/Chemical/Rate/Rate_cr.r — part of check-in [e7296f7eec] at 2003-08-19 15:44:55 on branch origin/master — Updated for new MTT (user: gawthrop@users.sourceforge.net, size: 368) [annotate] [blame] [check-ins using]
%% 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;