Changeset 372 for trunk/eml/pressure_changers/compressor.mso
- Timestamp:
- Sep 21, 2007, 7:17:36 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/eml/pressure_changers/compressor.mso
r353 r372 48 48 Cp as cp_mol (Brief = "Heat Capacity"); 49 49 Cv as cv_mol (Brief = "Heat Capacity"); 50 P diff as press_delta (Brief = "Pressure Increase", DisplayUnit='kPa');51 P ratio as positive (Brief = "Pressure Ratio");50 Pratio as positive (Brief = "Pressure Ratio", Symbol ="P_{ratio}"); 51 Pdrop as press_delta (Brief = "Pressure Drop", DisplayUnit = 'kPa', Symbol ="\Delta P"); 52 52 Wp as energy_mol (Brief = "Politropic Head"); 53 53 Ws as energy_mol (Brief = "Isentropic Head"); … … 68 68 Mwm = sum(Mw*Inlet.z); 69 69 70 "Calculate Outlet Stream Pressure" 71 Outlet.P = Inlet.P + Pdiff; 72 73 "Pratio Definition" 70 "Pressure Ratio" 74 71 Outlet.P = Inlet.P * Pratio; 75 72 73 "Pressure Drop" 74 Outlet.P = Inlet.P - Pdrop; 75 76 76 "Calculate Cp Using a External Physical Properties Routine" 77 77 Cp = PP.VapourCp(Inlet.T,Inlet.P,Inlet.z); … … 106 106 FPower*Effs = Inlet.F*Ws; 107 107 108 " Molar Balance"108 "Overall Molar Balance" 109 109 Outlet.F = Inlet.F; 110 110 111 "Component Molar Balance" 111 112 Outlet.z = Inlet.z; 112 113 end
Note: See TracChangeset
for help on using the changeset viewer.