Changeset 181 for branches


Ignore:
Timestamp:
Mar 5, 2007, 12:36:35 PM (17 years ago)
Author:
Rafael de Pelegrini Soares
Message:

Update types with the new final keyword and a sample showing how to use DisplayUnit?

Location:
branches/newlanguage
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/newlanguage/eml/types.mso

    r173 r181  
    3636
    3737# Pressure
    38 pressure as Real (Brief = "Pressure", Default=1, Lower=1e-30, Upper=5e7, Unit = 'atm');
     38pressure as Real (Brief = "Pressure", Default=1, Lower=1e-30, Upper=5e7, final Unit = 'atm');
    3939press_delta as pressure (Brief = "Pressure Difference", Default=0.01, Lower=-5e6);
    40 head as Real (Brief = "Head", Default=50, Lower=-1e6, Upper=1e6, Unit = 'kJ/kg');
     40head as Real (Brief = "Head", Default=50, Lower=-1e6, Upper=1e6, final Unit = 'kJ/kg');
    4141
    4242# Temperature
    43 temperature as Real (Brief = "Temperature", Default=300, Lower=27, Upper=5273, Unit = 'K');
     43temperature as Real (Brief = "Temperature", Default=300, Lower=27, Upper=5273, final Unit = 'K');
    4444temp_delta as temperature (Brief = "Temperature Difference", Default=30, Lower=-1000, Upper=1000);
    4545
    4646# Time
    47 time_h as positive (Brief = "Time in hours", Default=1, Upper=1e4, Unit = 'h');
    48 time_min as positive (Brief = "Time in minutes", Default=1, Upper=1e6, Unit ='min');
    49 time_sec as positive (Brief = "Time in seconds", Default=1, Upper=1e8, Unit = 's');
    50 frequency as positive(Brief = "Frequency", Default=1,Lower=0,Upper=100, Unit='1/s');
     47time_h as positive (Brief = "Time in hours", Default=1, Upper=1e4, final Unit = 'h');
     48time_min as positive (Brief = "Time in minutes", Default=1, Upper=1e6, final Unit ='min');
     49time_sec as positive (Brief = "Time in seconds", Default=1, Upper=1e8, final Unit = 's');
     50frequency as positive(Brief = "Frequency", Default=1,Lower=0,Upper=100, final Unit='1/s');
    5151
    5252# Size related
    53 angle as Real (Brief = "Angle", Default=0, Lower=-7, Upper=7, Unit ='rad');
    54 area as positive (Brief = "Area", Default=1, Upper=1E6, Unit ='m^2');
    55 length as positive (Brief = "Length", Default=1, Upper=5e6, Unit = 'm');
     53angle as Real (Brief = "Angle", Default=0, Lower=-7, Upper=7, final Unit ='rad');
     54area as positive (Brief = "Area", Default=1, Upper=1E6, final Unit ='m^2');
     55length as positive (Brief = "Length", Default=1, Upper=5e6, final Unit = 'm');
    5656length_delta as length (Brief = "Difference of Length", Lower=-1000);
    57 volume as positive (Brief = "Volume", Default=10, Lower=0, Upper=1000, Unit = 'm^3');
    58 volume_mol as positive (Brief = "Molar Volume", Default=10, Lower=0, Upper=1E6, Unit = 'm^3/mol');
    59 volume_mass as positive (Brief = "Specific Volume", Default=10, Lower=0, Upper=1E30, Unit = 'm^3/kg');
     57volume as positive (Brief = "Volume", Default=10, Lower=0, Upper=1000, final Unit = 'm^3');
     58volume_mol as positive (Brief = "Molar Volume", Default=10, Lower=0, Upper=1E6, final Unit = 'm^3/mol');
     59volume_mass as positive (Brief = "Specific Volume", Default=10, Lower=0, Upper=1E30, final Unit = 'm^3/kg');
    6060
    6161# Eletric
    62 current     as positive (Brief = "Electrical Current", Default=10, Upper=1e12, Unit ='A');
    63 charge      as Real (Brief = "Electrical Charge", Default=10, Lower=-1e12, Upper=1e12, Unit ='C');
    64 capacitance as positive (Brief = "Electrical Capacitance", Default=10, Upper=1e12, Unit ='F');
    65 indutance   as positive (Brief = "Electrical Indutance", Default=10, Upper=1e12, Unit ='V*s/A');
    66 voltage     as positive (Brief = "Electrical Voltage", Default=100, Upper=1e9, Unit = 'V');
    67 resistance  as positive (Brief = "Eletrical Resistance", Default=50, Upper=800, Unit = 'ohm');
    68 potency     as Real(Brief = "Potency", Default = 10, Lower=-1e3, Upper=1e3, Unit = 'kW');
     62current     as positive (Brief = "Electrical Current", Default=10, Upper=1e12, final Unit ='A');
     63charge      as Real (Brief = "Electrical Charge", Default=10, Lower=-1e12, Upper=1e12, final Unit ='C');
     64capacitance as positive (Brief = "Electrical Capacitance", Default=10, Upper=1e12, final Unit ='F');
     65indutance   as positive (Brief = "Electrical Indutance", Default=10, Upper=1e12, final Unit ='V*s/A');
     66voltage     as positive (Brief = "Electrical Voltage", Default=100, Upper=1e9, final Unit = 'V');
     67resistance  as positive (Brief = "Eletrical Resistance", Default=50, Upper=800, final Unit = 'ohm');
     68potency     as Real(Brief = "Potency", Default = 10, Lower=-1e3, Upper=1e3, final Unit = 'kW');
    6969
    7070
     
    7676
    7777# elementary
    78 mass as positive (Brief = "Mass", Default=2.5, Upper=1e6, Unit = 'kg');
    79 mol as positive (Brief = "Moles", Default=2.5, Upper=1e6, Unit = 'kmol');
    80 molweight as Real (Brief = "Molar Weight", Default=75, Lower=1, Upper=1e8, Unit = 'kg/kmol');
    81 molweight_inv as Real (Brief = "Moles Per Mass", Default=1, Lower=0, Upper=1e30, Unit = 'kmol/kg');
     78mass as positive (Brief = "Mass", Default=2.5, Upper=1e6, final Unit = 'kg');
     79mol as positive (Brief = "Moles", Default=2.5, Upper=1e6, final Unit = 'kmol');
     80molweight as Real (Brief = "Molar Weight", Default=75, Lower=1, Upper=1e8, final Unit = 'kg/kmol');
     81molweight_inv as Real (Brief = "Moles Per Mass", Default=1, Lower=0, Upper=1e30, final Unit = 'kmol/kg');
    8282
    8383# densities
    84 dens_mol as Real (Brief = "Molar Density", Default=1, Lower=1e-30, Upper=5e3, Unit = 'kmol/m^3');
    85 dens_mass as Real (Brief = "Mass Density", Default=1000, Lower=1e-30, Upper=5e5, Unit ='kg/m^3');
     84dens_mol as Real (Brief = "Molar Density", Default=1, Lower=1e-30, Upper=5e3, final Unit = 'kmol/m^3');
     85dens_mass as Real (Brief = "Mass Density", Default=1000, Lower=1e-30, Upper=5e5, final Unit ='kg/m^3');
    8686
    8787# Concentration
    8888conc_mol as dens_mol (Brief = "Molar Concentration", Default=1e-3);
    89 inv_conc_mol as Real (Brief = "Inverse of Molar Concentration", Default=0.05, Lower=2e-4, Upper=1e30, Unit = 'm^3/kmol');
     89inv_conc_mol as Real (Brief = "Inverse of Molar Concentration", Default=0.05, Lower=2e-4, Upper=1e30, final Unit = 'm^3/kmol');
    9090conc_mass as dens_mass (Brief = "Mass Concentration");
    91 inv_conc_mass as Real (Brief = "Inverse of Mass Concentration", Default=0.001, Lower=2e-6, Upper=1e30, Unit = 'm^3/kg');
     91inv_conc_mass as Real (Brief = "Inverse of Mass Concentration", Default=0.001, Lower=2e-6, Upper=1e30, final Unit = 'm^3/kg');
    9292
    9393# reaction
    94 reaction_mol as Real (Brief = "Molar Reaction Rate", Default=10, Lower=-1e6, Upper=1e6, Unit = 'kmol/h/m^3');
    95 reaction_mass as Real (Brief = "Mass Reaction Rate", Default=1000,Lower=-1e3, Upper=1e9, Unit = 'kg/h/m^3');
     94reaction_mol as Real (Brief = "Molar Reaction Rate", Default=10, Lower=-1e6, Upper=1e6, final Unit = 'kmol/h/m^3');
     95reaction_mass as Real (Brief = "Mass Reaction Rate", Default=1000,Lower=-1e3, Upper=1e9, final Unit = 'kg/h/m^3');
    9696
    9797
     
    103103
    104104# Heat Capacity
    105 cp_mass as Real (Brief = "Mass Heat Capacity", Default=1.0, Lower=0.1, Upper=10.0, Unit = 'kJ/kg/K'); 
    106 cp_mol as Real (Brief = "Molar Heat Capacity", Default=100, Lower=1, Upper=1e3, Unit = 'J/mol/K');
    107 cv_mol as Real (Brief = "Molar Heat Capacity", Default=100, Lower=1, Upper=1e3, Unit ='J/mol/K');   
     105cp_mass as Real (Brief = "Mass Heat Capacity", Default=1.0, Lower=0.1, Upper=10.0, final Unit = 'kJ/kg/K'); 
     106cp_mol as Real (Brief = "Molar Heat Capacity", Default=100, Lower=1, Upper=1e3, final Unit = 'J/mol/K');
     107cv_mol as Real (Brief = "Molar Heat Capacity", Default=100, Lower=1, Upper=1e3, final Unit ='J/mol/K');   
    108108
    109109# Enthalpy
    110 enth_mass as Real (Brief = "Mass Enthalpy", Default=500, Lower=-10000, Upper=10000, Unit = 'kJ/kg');
    111 enth_mol as Real (Brief = "Molar Enthalpy", Default=500, Lower=-1e9, Upper=1e9, Unit = 'J/mol');
     110enth_mass as Real (Brief = "Mass Enthalpy", Default=500, Lower=-10000, Upper=10000, final Unit = 'kJ/kg');
     111enth_mol as Real (Brief = "Molar Enthalpy", Default=500, Lower=-1e9, Upper=1e9, final Unit = 'J/mol');
    112112
    113113# Entropy
    114 entr_mol as Real (Brief = "Molar Entropy", Default=0, Lower=-1e4, Upper=1e4, Unit = 'kJ/kmol/K');
    115 entr_mass as Real (Brief = "Mass Entropy", Default=0, Lower=-1e4, Upper=1e4, Unit = 'kJ/kg/K');
     114entr_mol as Real (Brief = "Molar Entropy", Default=0, Lower=-1e4, Upper=1e4, final Unit = 'kJ/kmol/K');
     115entr_mass as Real (Brief = "Mass Entropy", Default=0, Lower=-1e4, Upper=1e4, final Unit = 'kJ/kg/K');
    116116
    117117# Heat
    118 heat_reaction as Real (Brief = "Heat Of Reaction", Default=1000, Lower=-1e8, Upper=1e8, Unit = 'kJ/kmol');
    119 heat_rate as Real (Brief = "Heat Rate", Default=1000, Lower=-1e11, Upper=1e11, Unit = 'J/s');
    120 heat_flux as Real (Brief = "Heat Flux", Default=1, Lower=-1e5, Upper=1e5, Unit = 'kW/m^2');
    121 heat_trans_coeff as positive (Brief = "Heat Transference Coefficient", Default=1, Upper=1e3, Unit = 'kW/m^2/K');
     118heat_reaction as Real (Brief = "Heat Of Reaction", Default=1000, Lower=-1e8, Upper=1e8, final Unit = 'kJ/kmol');
     119heat_rate as Real (Brief = "Heat Rate", Default=1000, Lower=-1e11, Upper=1e11, final Unit = 'J/s');
     120heat_flux as Real (Brief = "Heat Flux", Default=1, Lower=-1e5, Upper=1e5, final Unit = 'kW/m^2');
     121heat_trans_coeff as positive (Brief = "Heat Transference Coefficient", Default=1, Upper=1e3, final Unit = 'kW/m^2/K');
    122122
    123123# Energy
    124 energy as Real (Brief = "Energy", Default=10000, Lower=-1e11, Upper=1e11, Unit = 'kJ');
    125 energy_mass as Real (Brief = "Energy per mass", Default=10000, Lower=-1e15, Upper=1e15, Unit = 'kJ/kg');
    126 energy_mol as Real (Brief = "Energy per mol", Default=10000, Lower=-1e15, Upper=1e15, Unit = 'kJ/kmol');
    127 power as Real (Brief = "Power", Default=10, Lower=-1e8, Upper=1e8, Unit = 'kW');
     124energy as Real (Brief = "Energy", Default=10000, Lower=-1e11, Upper=1e11, final Unit = 'kJ');
     125energy_mass as Real (Brief = "Energy per mass", Default=10000, Lower=-1e15, Upper=1e15, final Unit = 'kJ/kg');
     126energy_mol as Real (Brief = "Energy per mol", Default=10000, Lower=-1e15, Upper=1e15, final Unit = 'kJ/kmol');
     127power as Real (Brief = "Power", Default=10, Lower=-1e8, Upper=1e8, final Unit = 'kW');
    128128
    129129
     
    136136
    137137# Flow
    138 flow_mass as positive (Brief = "Mass Flow", Default=1000, Upper=1e10, Unit = 'kg/h');
     138flow_mass as positive (Brief = "Mass Flow", Default=1000, Upper=1e10, final Unit = 'kg/h');
    139139flow_mass_delta as flow_mass (Brief = "Difference of Flow Mass", Lower=-1e10);
    140 flow_vol as positive (Brief = "Volumetric Flow", Default=1, Upper=1e12, Unit = 'm^3/h');
     140flow_vol as positive (Brief = "Volumetric Flow", Default=1, Upper=1e12, final Unit = 'm^3/h');
    141141flow_vol_delta as flow_vol (Brief = "Difference of Volumetric Flow", Lower=-1e12);
    142 flow_mol as positive (Brief = "Mole Flow", Default=10, Upper=1e8, Unit = 'kmol/h');
     142flow_mol as positive (Brief = "Mole Flow", Default=10, Upper=1e8, final Unit = 'kmol/h');
    143143
    144144flow_mol_delta as flow_mol (Brief = "Difference of Mole Flow", Lower=-1e8);
    145145
    146146# Flux
    147 flux_mol as positive (Brief = "Molar Flux", Default=1, Upper=1e4, Unit = 'kmol/s/m^2');   
     147flux_mol as positive (Brief = "Molar Flux", Default=1, Upper=1e4, final Unit = 'kmol/s/m^2');   
    148148flux_mol_delta as flux_mol (Brief = "Difference of Molar Flux", Lower=-1e4);   
    149 flux_mass as positive (Brief = "Mass Flux", Default=1, Upper=1e6, Unit = 'kg/s/m^2');
     149flux_mass as positive (Brief = "Mass Flux", Default=1, Upper=1e6, final Unit = 'kg/s/m^2');
    150150flux_mass_delta as flux_mass (Brief = "Difference of Mass Flux", Lower=-1e6);
    151 flux_vol as positive (Brief = "Volumetric Flux", Default=1, Upper=1e4, Unit = 'm^3/s/m^2');
     151flux_vol as positive (Brief = "Volumetric Flux", Default=1, Upper=1e4, final Unit = 'm^3/s/m^2');
    152152flux_vol_delta as flux_vol (Brief = "Difference of Volumetric Flux", Lower=-1e4);
    153153
    154154# Velocity
    155 vel_angular as Real (Brief = "Angular Velocity RPM", Default=1000, Lower=-100000, Upper=100000, Unit = 'rpm');
    156 rotation as Real (Brief = "Angular Velocity", Default=500, Lower=-10000, Upper=10000, Unit = 'rad/s');
    157 velocity as Real (Brief = "Velocity", Default=1, Lower=-1E5, Upper=1e5, Unit = 'm/s');
     155vel_angular as Real (Brief = "Angular Velocity RPM", Default=1000, Lower=-100000, Upper=100000, final Unit = 'rpm');
     156rotation as Real (Brief = "Angular Velocity", Default=500, Lower=-10000, Upper=10000, final Unit = 'rad/s');
     157velocity as Real (Brief = "Velocity", Default=1, Lower=-1E5, Upper=1e5, final Unit = 'm/s');
    158158velocity_delta as velocity (Brief = "Difference of Velocity", Default=0, Lower=-1E3, Upper=-1E3);
    159 acceleration as Real (Brief = "General Acceleration", Default=9.81, Lower=-1e3, Upper=1e3, Unit = 'm/s^2');
     159acceleration as Real (Brief = "General Acceleration", Default=9.81, Lower=-1e3, Upper=1e3, final Unit = 'm/s^2');
    160160
    161161# Others
    162162fricfactor as Real (Brief = "Friction Factor", Default=0.05, Lower=1e-5, Upper=2000);
    163 moment_inertia as Real (Brief = "Moment Of Inertia", Default=100, Lower=1E-3, Upper=1E4, Unit = 'kg*m^2');
    164 hookes_const as Real (Brief = "Hookes Constant", Default=1e5, Lower=1, Upper=1e10, Unit = 'N/m');
     163moment_inertia as Real (Brief = "Moment Of Inertia", Default=100, Lower=1E-3, Upper=1E4, final Unit = 'kg*m^2');
     164hookes_const as Real (Brief = "Hookes Constant", Default=1e5, Lower=1, Upper=1e10, final Unit = 'N/m');
    165165
    166166
     
    173173
    174174# Conductivity
    175 conductivity as Real (Brief = "Thermal Conductivity", Default=1.0, Lower=0.001, Upper=500, Unit = 'W/m/K');
     175conductivity as Real (Brief = "Thermal Conductivity", Default=1.0, Lower=0.001, Upper=500, final Unit = 'W/m/K');
    176176
    177177# Difusivity
    178 diffusivity as positive (Brief = "Diffusivity", Default=1e-3, Upper=1, Unit ='cm^2/s'); 
     178diffusivity as positive (Brief = "Diffusivity", Default=1e-3, Upper=1, final Unit ='cm^2/s'); 
    179179
    180180# Fugacity
     
    182182
    183183# Viscosity
    184 viscosity as Real (Brief = "Viscosity", Default=1, Lower=1e-30, Upper=1e5, Unit = 'cP');
     184viscosity as Real (Brief = "Viscosity", Default=1, Lower=1e-30, Upper=1e5, final Unit = 'cP');
    185185
    186186# Molar and Specific Volume
     
    189189
    190190# Others
    191 spec_surface_vol as positive (Brief = "Specific Surface Volume", Default=1e5, Upper=1e15, Unit = 'm^2/m^3');
    192 spec_surface_mass as positive (Brief = "Specific Surface Mass", Default=100, Upper=1e12, Unit = 'm^2/kg');
    193 surf_tens as positive (Brief = "Surface Tension", Default=0.05, Upper=1, Unit = 'N/m');
     191spec_surface_vol as positive (Brief = "Specific Surface Volume", Default=1e5, Upper=1e15, final Unit = 'm^2/m^3');
     192spec_surface_mass as positive (Brief = "Specific Surface Mass", Default=100, Upper=1e12, final Unit = 'm^2/kg');
     193surf_tens as positive (Brief = "Surface Tension", Default=0.05, Upper=1, final Unit = 'N/m');
    194194act_coeff as positive (Brief = "Activity Coefficient for Liquid", Default=1, Upper=30);
    195195ph as Real (Brief = "pH", Default=7, Lower=-5, Upper=20);
  • branches/newlanguage/sample/reactors/fogler/chap4/semibatch_reactor.mso

    r171 r181  
    5454       
    5555        VARIABLES
    56         C(NComp)        as conc_mol             (Brief="Concentration", Unit='mol/l', Lower=0);
    57         Co(NComp)       as conc_mol             (Brief="Inlet concentration", Unit='mol/l', Lower=0);
     56        C(NComp)        as conc_mol             (Brief="Concentration", DisplayUnit='mol/l', Lower=0);
     57        Co(NComp)       as conc_mol             (Brief="Inlet concentration", DisplayUnit='mol/l', Lower=0);
    5858       
    59         r(NComp)        as reaction_mol (Brief="Rate of reaction", Unit='mol/l/s');
     59        r(NComp)        as reaction_mol (Brief="Rate of reaction", DisplayUnit='mol/l/s');
    6060        k                       as Real                 (Brief="Specific rate of reaction", Unit='l/mol/s');
    61         V                       as volume               (Brief="Volume", Unit='l');
     61        V                       as volume               (Brief="Volume", DisplayUnit='l');
    6262        X                       as fraction     (Brief="Molar conversion", Lower=0);
    6363       
Note: See TracChangeset for help on using the changeset viewer.