- Timestamp:
- Aug 16, 2008, 8:20:04 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gui/eml/pressure_changers/compressor.mso
r599 r601 14 14 * 15 15 *---------------------------------------------------------------------- 16 * Author: Marcos L. Alencastro, Estefane S. Horn 16 * Author: Marcos L. Alencastro, Estefane S. Horn (Revised Gerson B. Bicca) 17 17 * $Id$ 18 18 *--------------------------------------------------------------------*# … … 22 22 Model centrifugal_compressor 23 23 24 # Do Not Forget to Update The Losses by Mechanical Efficiency !!!!25 26 24 ATTRIBUTES 27 25 Pallete = true; 28 26 Icon = "icon/CentrifugalCompressor"; 29 Brief = "Testing Model of a centrifugal compressor."; 30 27 Brief = "Model of a centrifugal compressor."; 28 Info = 29 "To be documented"; 31 30 32 31 PARAMETERS … … 56 55 57 56 FluidPower as power (Brief = "Fluid Power"); 57 BrakePower as power (Brief = "Brake Power"); 58 PowerLoss as power (Brief = "Power Losses"); 58 59 Mwm as molweight (Brief = "Mixture Molar Weight"); 59 60 rho as dens_mass (Brief = "Mass Density"); … … 136 137 end 137 138 138 "Isentropic Outlet Temperature" #Mollier Method ?139 "Isentropic Outlet Temperature" 139 140 PP.VapourEntropy(Tiso, Outlet.P, Outlet.z) = PP.VapourEntropy(Inlet.T, Inlet.P, Inlet.z); 140 141 #"Calculate Politropic Coefficient"142 #PolyCoeff*(ln(Outlet.T/Inlet.T)) = (PolyCoeff-1)*(ln(Outlet.P/Inlet.P));143 141 144 142 "Polytropic Efficiency" 145 143 PolytropicEff * (PolyCoeff-1) * IseCoeff = PolyCoeff * (IseCoeff-1); 146 144 147 "Fluid Power" 148 FluidPower = -WorkIn; 145 "Brake Power" 146 BrakePower = -WorkIn; 147 148 "Brake Power" 149 BrakePower = (FluidPower/MechanicalEff)-PowerLoss; 150 151 "Power Loss" 152 PowerLoss = BrakePower - FluidPower; 149 153 150 154 end
Note: See TracChangeset
for help on using the changeset viewer.