Changeset 866 for branches/gui


Ignore:
Timestamp:
Oct 28, 2009, 2:27:10 PM (14 years ago)
Author:
mamuller
Message:

Empty Message

Location:
branches/gui/eml/stage_separators
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/gui/eml/stage_separators/column.mso

    r850 r866  
    19101910for i in 1:NumberOfStages do
    19111911
    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 do
     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
     1918end
     1919
     1920#*for i in 1:NComp-1 do
    19211921       
    19221922for j in 1:NumberOfStages do
     
    19281928
    19291929end
    1930 
     1930*#
    19311931end
    19321932
  • branches/gui/eml/stage_separators/reboiler.mso

    r841 r866  
    179179        case "Flash_PH":
    180180
    181 "Flash Calculation"
     181#*"Flash Calculation"
    182182        [OutletVapour.v, x, y] = PP.FlashPH(OutletVapour.P, OutletVapour.h, OutletVapour.z);
    183183       
     
    185185        OutletVapour.h = (1-OutletVapour.v)*PP.LiquidEnthalpy(OutletVapour.T, OutletVapour.P, x) +
    186186        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;
    187200
    188201        case "Fake_Conditions":
  • branches/gui/eml/stage_separators/tray.mso

    r850 r866  
    327327        deltaP as pressure;
    328328       
    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);
    331331        #dp as length (Brief="Particle diameter", Default=1e-3, Lower=0, Upper=10);
    332332        #invK as positive (Brief="Wall factor", Default=1, Upper=10);
    333333        #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);
    335335        hl as positive (Brief="Column holdup", Unit='m^3/m^3', Default=0.01,Upper=10);
    336336
Note: See TracChangeset for help on using the changeset viewer.