Ignore:
Timestamp:
Jul 13, 2007, 6:28:33 PM (16 years ago)
Author:
Argimiro Resende Secchi
Message:

Creating energy_stream and set its use.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/eml/stage_separators/condenser.mso

    r300 r310  
    5151out     OutletL as liquid_stream(Brief="Liquid outlet stream");
    5252out     OutletV as vapour_stream(Brief="Vapour outlet stream");
    53 in      Q as heat_rate (Brief="Heat supplied");
     53in      InletQ as energy_stream (Brief="Heat supplied");
    5454
    5555        M(NComp) as mol (Brief="Molar Holdup in the tray");
     
    6868        "Energy Balance"
    6969        diff(E) = InletV.F*InletV.h - OutletL.F*OutletL.h
    70                                 - OutletV.F*OutletV.h + Q;
     70                                - OutletV.F*OutletV.h + InletQ.Q;
    7171
    7272        "Molar Holdup"
     
    129129in      InletV as stream(Brief="Vapour inlet stream");
    130130out     OutletL as liquid_stream(Brief="Liquid outlet stream");
    131 in      Q as heat_rate (Brief="Heat supplied");
     131in      InletQ as energy_stream (Brief="Heat supplied");
    132132        DP as press_delta (Brief="Pressure Drop in the condenser");
    133133
     
    138138               
    139139        "Energy Balance"
    140         InletV.F*InletV.h = OutletL.F*OutletL.h + Q;
     140        InletV.F*InletV.h = OutletL.F*OutletL.h + InletQ.Q;
    141141       
    142142        "Pressure"
     
    184184out     OutletL as liquid_stream(Brief="Liquid outlet stream");
    185185out     OutletV as vapour_stream(Brief="Vapour outlet stream");
     186in      InletQ as energy_stream (Brief="Heat supplied");
    186187
    187188        M(NComp) as mol (Brief="Molar Holdup in the tray");
     
    192193        vV as volume_mol (Brief="Vapour Molar volume");
    193194        Level as length (Brief="Level of liquid phase");
    194         Q as heat_rate (Brief="Heat supplied");
    195195        Vol as volume;
    196196        r3 as reaction_mol (Brief = "Reaction resulting ethyl acetate", DisplayUnit = 'mol/l/s');
     
    210210        "Energy Balance"
    211211        diff(E) = InletV.F*InletV.h - OutletL.F*OutletL.h
    212                                 - OutletV.F*OutletV.h + Q + Hr * r3 * ML*vL;
     212                                - OutletV.F*OutletV.h + InletQ.Q + Hr * r3 * ML*vL;
    213213
    214214        "Molar Holdup"
Note: See TracChangeset for help on using the changeset viewer.