253 | | C(NComp) as conc_mol(Brief="Concentration", DisplayUnit='mol/l', Lower=0); |
254 | | Co(NComp) as conc_mol(Brief="Inlet concentration", DisplayUnit='mol/l', Lower=0); |
| 253 | P1 as pressure(Brief="Concentration", Unit='atm'); |
| 254 | # the above line will generate an error because pressure.Unit was declared as final |
| 255 | P2 as pressure(Brief="Inlet concentration", DisplayUnit='m'); |
| 256 | # the above line will generate an error because a incompatible DisplayUnit was given |
| 257 | P3 as pressure(Brief="Inlet concentration", DisplayUnit='atm'); # this one is correct |