Changeset 155 for branches/newlanguage/sample/miscellaneous
- Timestamp:
- Feb 7, 2007, 10:58:37 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/newlanguage/sample/miscellaneous/sample_bio.mso
r119 r155 24 24 FlowSheet bio 25 25 PARAMETERS 26 miMax as frequency(Brief="Monod parameter", Unit= "1/h", Default=0.53);27 D as frequency(Brief="Dilution rate F/V", Unit= "1/h");26 miMax as frequency(Brief="Monod parameter", Unit='1/h', Default=0.53); 27 D as frequency(Brief="Dilution rate F/V", Unit='1/h'); 28 28 Km as conc_mass(Brief="Monod parameter", Default=0.12); 29 29 K1 as inv_conc_mass(Brief="Monod parameter", Default=0.4545); … … 34 34 biomass as conc_mass (Brief="Biomass concentration"); 35 35 substrate as conc_mass (Brief="Substrate concentration"); 36 mi as frequency (Brief="Specific growth rate", Unit= "1/h");36 mi as frequency (Brief="Specific growth rate", Unit='1/h'); 37 37 38 38 EQUATIONS … … 47 47 48 48 SET 49 D = 0.3 * "1/h";49 D = 0.3 * '1/h'; 50 50 51 51 INITIAL 52 biomass = 1 * "kg/m^3";53 substrate = 0.5 * "kg/m^3";52 biomass = 1 * 'kg/m^3'; 53 substrate = 0.5 * 'kg/m^3'; 54 54 55 55 OPTIONS 56 56 TimeStep = 0.5; 57 57 TimeEnd = 10; 58 TimeUnit = "h";58 TimeUnit = 'h'; 59 59 SparseAlgebra = true; 60 60 end
Note: See TracChangeset
for help on using the changeset viewer.