Changeset 992 for trunk/sample/miscellaneous
- Timestamp:
- Jun 13, 2016, 2:21:42 AM (6 years ago)
- Location:
- trunk/sample/miscellaneous
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sample/miscellaneous/sample_high_index_optimal.mso
r913 r992 49 49 nt as mol; 50 50 51 T as temperature ;51 T as temperature (Default=200); 52 52 P as pressure; 53 53 Psat(NComp) as pressure; … … 146 146 TimeUnit = 'h'; 147 147 148 #DAESolver(File="dasslc"); # slow integration149 DAESolver(File="mebdf"); # much faster148 #DAESolver(File="dasslc"); 149 DAESolver(File="mebdf"); 150 150 Dynamic = true; 151 151 end -
trunk/sample/miscellaneous/sample_optimization.mso
r394 r992 15 15 16 16 OPTIONS 17 NLPSolver( #File = "ipopt_emso"17 NLPSolver(File = "ipopt_emso" 18 18 #File = "complex" 19 File = "optpp_emso"19 #File = "optpp_emso" 20 20 ); 21 21 Dynamic = false; -
trunk/sample/miscellaneous/sample_vrtherm.mso
r913 r992 53 53 54 54 EQUATIONS 55 fl.OutletLiquid.F = 400*sqrt(fl. Geometry.Level/'m') * 'kmol/h';55 fl.OutletLiquid.F = 400*sqrt(fl.Level/'m') * 'kmol/h'; 56 56 57 57 SPECIFY … … 65 65 66 66 SET 67 fl. Geometry.Lenght = 10 * 'm';68 fl. Geometry.Diameter = 2 * 'm';69 fl. Geometry.Orientation = "vertical";70 # fl. Geometry.Orientation = "horizontal";67 fl.Lenght = 10 * 'm'; 68 fl.Diameter = 2 * 'm'; 69 fl.Orientation = "vertical"; 70 # fl.Orientation = "horizontal"; 71 71 72 72 INITIAL 73 73 fl.OutletLiquid.T = 338 * 'K'; 74 fl. Geometry.Level = 0.4 * 'm';74 fl.Level = 0.4 * 'm'; 75 75 fl.OutletLiquid.z([1:5]) = 0.1; 76 76
Note: See TracChangeset
for help on using the changeset viewer.