Changeset 866 for branches/gui
- Timestamp:
- Oct 28, 2009, 2:27:10 PM (14 years ago)
- Location:
- branches/gui/eml/stage_separators
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gui/eml/stage_separators/column.mso
r850 r866 1910 1910 for i in 1:NumberOfStages do 1911 1911 1912 "The initial temperature of the STAGES"1913 STAGES(i).OutletLiquid.T = INITIALIZATION.TopStageTemperature+(INITIALIZATION.BottomStageTemperature-INITIALIZATION.TopStageTemperature)*((i-1)/(NumberOfStages-1));1914 1915 "The Liquid Holdup of the STAGES"1916 STAGES(i).ML = INITIALIZATION.LiquidMolarHoldup;1917 1918 end 1919 1920 for i in 1:NComp-1 do1912 #"The initial temperature of the STAGES" 1913 # STAGES(i).OutletLiquid.T = INITIALIZATION.TopStageTemperature+(INITIALIZATION.BottomStageTemperature-INITIALIZATION.TopStageTemperature)*((i-1)/(NumberOfStages-1)); 1914 1915 #"The Liquid Holdup of the STAGES" 1916 # STAGES(i).ML = INITIALIZATION.LiquidMolarHoldup; 1917 1918 end 1919 1920 #*for i in 1:NComp-1 do 1921 1921 1922 1922 for j in 1:NumberOfStages do … … 1928 1928 1929 1929 end 1930 1930 *# 1931 1931 end 1932 1932 -
branches/gui/eml/stage_separators/reboiler.mso
r841 r866 179 179 case "Flash_PH": 180 180 181 "Flash Calculation"181 #*"Flash Calculation" 182 182 [OutletVapour.v, x, y] = PP.FlashPH(OutletVapour.P, OutletVapour.h, OutletVapour.z); 183 183 … … 185 185 OutletVapour.h = (1-OutletVapour.v)*PP.LiquidEnthalpy(OutletVapour.T, OutletVapour.P, x) + 186 186 OutletVapour.v*PP.VapourEnthalpy(OutletVapour.T, OutletVapour.P, y); 187 *# 188 189 "Fake Vapourisation Fraction" 190 OutletVapour.v = Fake_Vfrac; 191 192 "Fake output temperature" 193 OutletVapour.T = Fake_Temperature; 194 195 "Fake Liquid Molar Fraction" 196 x = 1; 197 198 "Fake Vapour Molar Fraction" 199 y = 1; 187 200 188 201 case "Fake_Conditions": -
branches/gui/eml/stage_separators/tray.mso
r850 r866 327 327 deltaP as pressure; 328 328 329 uL as velocity (Brief="volume flow rate of liquid, m^3/m^2/s", Lower=-10, Upper=100 );330 uV as velocity (Brief="volume flow rate of vapor, m^3/m^2/s", Lower=-10, Upper=100 );329 uL as velocity (Brief="volume flow rate of liquid, m^3/m^2/s", Lower=-10, Upper=1000); 330 uV as velocity (Brief="volume flow rate of vapor, m^3/m^2/s", Lower=-10, Upper=1000); 331 331 #dp as length (Brief="Particle diameter", Default=1e-3, Lower=0, Upper=10); 332 332 #invK as positive (Brief="Wall factor", Default=1, Upper=10); 333 333 #Rev as Real (Brief="Reynolds number of the vapor stream", Default=4000); 334 Al as area (Brief="Area occupied by the liquid", Default=0.001, Upper=1 );334 Al as area (Brief="Area occupied by the liquid", Default=0.001, Upper=10); 335 335 hl as positive (Brief="Column holdup", Unit='m^3/m^3', Default=0.01,Upper=10); 336 336
Note: See TracChangeset
for help on using the changeset viewer.