Changeset 130
- Timestamp:
- Jan 23, 2007, 7:01:59 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sample/heat_exchangers/Sample_DoublePipe_Series.mso
r100 r130 8 8 DEVICES 9 9 10 Pipe(2) as DoublePipe_LMTD; 10 Pipe1 as DoublePipe_LMTD; 11 Pipe2 as DoublePipe_NTU; 12 11 13 streamhot as streamTP; 12 14 streamcold as streamTP; … … 14 16 CONNECTIONS 15 17 16 streamhot to Pipe (1).Inlet.Hot;17 Pipe (1).Outlet.Hot to Pipe(2).Inlet.Hot;18 streamhot to Pipe1.Inlet.Hot; 19 Pipe1.Outlet.Hot to Pipe2.Inlet.Hot; 18 20 19 streamcold to Pipe (1).Inlet.Cold;20 Pipe (1).Outlet.Cold to Pipe(2).Inlet.Cold;21 streamcold to Pipe1.Inlet.Cold; 22 Pipe1.Outlet.Cold to Pipe2.Inlet.Cold; 21 23 22 24 PARAMETERS … … 36 38 #++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 37 39 38 Pipe.HE.FlowDirection = "Cocurrent"; 39 Pipe.HE.TurbulentFlow = "SiederTate"; 40 Pipe1.HE.FlowDirection = "Cocurrent"; 41 Pipe2.HE.FlowDirection = "Cocurrent"; 42 Pipe1.HE.TurbulentFlow = "SiederTate"; 43 Pipe2.HE.TurbulentFlow = "SiederTate"; 40 44 41 45 #++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ … … 43 47 #++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 44 48 45 Pipe.HE.HotSide = "Inner"; 46 Pipe.DoInner = 0.04826*"m"; 47 Pipe.DiInner = 0.04089*"m"; 48 Pipe.DiOuter = 0.07793*"m"; 49 Pipe.Kwall = 0.057 *"kW/m/K"; 50 Pipe.Lpipe = 3*"m"; 49 Pipe1.HE.HotSide = "Inner"; 50 Pipe1.DoInner = 0.04826*"m"; 51 Pipe1.DiInner = 0.04089*"m"; 52 Pipe1.DiOuter = 0.07793*"m"; 53 Pipe1.Kwall = 0.057 *"kW/m/K"; 54 Pipe1.Lpipe = 1.7*"m"; 55 56 Pipe2.HE.HotSide = "Inner"; 57 Pipe2.DoInner = 0.04826*"m"; 58 Pipe2.DiInner = 0.04089*"m"; 59 Pipe2.DiOuter = 0.07793*"m"; 60 Pipe2.Kwall = 0.057 *"kW/m/K"; 61 Pipe2.Lpipe = 1.7*"m"; 51 62 52 63 SPECIFY … … 55 66 #++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 56 67 57 streamhot.F = 100 58 streamhot.T = (70+273.15)* "K";59 streamhot.P = 5 68 streamhot.F = 100 * "kmol/h"; 69 streamhot.T = 415 * "K"; 70 streamhot.P = 5 * "bar"; 60 71 streamhot.z = [1,0]; 61 72 … … 64 75 #++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 65 76 66 streamcold.F = 5 67 streamcold.P = 5 68 streamcold.T = (25+273.15)* "K";77 streamcold.F = 5 * "kmol/h"; 78 streamcold.P = 5 * "bar"; 79 streamcold.T = 310 * "K"; 69 80 streamcold.z = [0,1]; 70 81 #===================================================================== 71 82 # Fouling 72 83 #===================================================================== 73 Pipe.Resistances.Rfi = 0*"m^2*K/kW"; 74 Pipe.Resistances.Rfo = 0*"m^2*K/kW"; 84 Pipe1.Resistances.Rfi = 0*"m^2*K/kW"; 85 Pipe2.Resistances.Rfi = 0*"m^2*K/kW"; 86 Pipe1.Resistances.Rfo = 0*"m^2*K/kW"; 87 Pipe2.Resistances.Rfo = 0*"m^2*K/kW"; 75 88 76 89 OPTIONS 77 mode 90 mode = "steady"; 78 91 79 92 end
Note: See TracChangeset
for help on using the changeset viewer.