Changeset 530 for trunk/eml/reactors
- Timestamp:
- May 30, 2008, 5:21:43 PM (15 years ago)
- Location:
- trunk/eml/reactors
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/eml/reactors/equil.mso
r471 r530 112 112 113 113 for i in [1:NComp] 114 if (Outletm.z(i) > 0) then114 if (Outletm.z(i) > 1e-16) then 115 115 "Molar conversion" 116 116 Outlet.F*Outlet.z(i) = Outletm.F*Outletm.z(i)*(1 - conv(i)); … … 203 203 204 204 for i in [1:NComp] 205 if (Outletm.z(i) > 0) then205 if (Outletm.z(i) > 1e-16) then 206 206 "Molar conversion" 207 207 Outlet.F*Outlet.z(i) = Outletm.F*Outletm.z(i)*(1 - conv(i)); -
trunk/eml/reactors/gibbs.mso
r471 r530 108 108 G(i) + sumt(lambda*na(:,i)) = -Rg*Outlet.T*ln(activ(i)); 109 109 110 if (Outletm.z(i) > 0) then110 if (Outletm.z(i) > 1e-16) then 111 111 "Molar conversion" 112 112 Fi(i) = Outletm.F*Outletm.z(i)*(1 - conv(i)); … … 195 195 G(i) + sumt(lambda*na(:,i)) = -Rg*Outlet.T*ln(activ(i)); 196 196 197 if (Outletm.z(i) > 0) then197 if (Outletm.z(i) > 1e-16) then 198 198 "Molar conversion" 199 199 Fi(i) = Outletm.F*Outletm.z(i)*(1 - conv(i)); -
trunk/eml/reactors/stoic.mso
r426 r530 73 73 74 74 for i in [1:NComp] 75 if (Outletm.z(i) > 0) then75 if (Outletm.z(i) > 1e-16) then 76 76 "Molar conversion" 77 77 Outlet.F*Outlet.z(i) = Outletm.F*Outletm.z(i)*(1 - conv(i)); … … 124 124 125 125 for i in [1:NComp] 126 if (Outletm.z(i) > 0) then126 if (Outletm.z(i) > 1e-16) then 127 127 "Molar conversion" 128 128 Outlet.F*Outlet.z(i) = Outletm.F*Outletm.z(i)*(1 - conv(i)); -
trunk/eml/reactors/yield.mso
r426 r530 85 85 86 86 for i in [1:NComp] 87 if (Outletm.z(i) > 0) then87 if (Outletm.z(i) > 1e-16) then 88 88 "Molar conversion" 89 89 Outlet.F*Outlet.z(i) = Outletm.F*Outletm.z(i)*(1 - conv(i));
Note: See TracChangeset
for help on using the changeset viewer.