Ignore:
Timestamp:
Feb 7, 2007, 10:58:37 AM (16 years ago)
Author:
Rafael de Pelegrini Soares
Message:

Converting UOM to single quote strings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/newlanguage/sample/miscellaneous/sample_bio.mso

    r119 r155  
    2424FlowSheet bio
    2525        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');
    2828        Km      as conc_mass(Brief="Monod parameter", Default=0.12);
    2929        K1      as inv_conc_mass(Brief="Monod parameter", Default=0.4545);
     
    3434        biomass   as conc_mass (Brief="Biomass concentration");
    3535        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');
    3737       
    3838        EQUATIONS
     
    4747       
    4848        SET
    49         D      = 0.3  *  "1/h";
     49        D      = 0.3  *  '1/h';
    5050       
    5151        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';
    5454 
    5555        OPTIONS
    5656        TimeStep = 0.5;
    5757        TimeEnd = 10;
    58         TimeUnit = "h";
     58        TimeUnit = 'h';
    5959        SparseAlgebra = true;
    6060end
Note: See TracChangeset for help on using the changeset viewer.