diff options
author | pravindalve | 2020-11-04 21:16:12 +0530 |
---|---|---|
committer | pravindalve | 2020-11-04 21:16:12 +0530 |
commit | 0a695c879d79b326b901c4e56b78737d165ba849 (patch) | |
tree | 3f0ca6004849450b5a9f4609bfce4efec6709505 /UnitOperations.py | |
parent | 9a52d596501a5f75eae84476455bdb1693aef6e4 (diff) | |
download | Chemical-Simulator-GUI-0a695c879d79b326b901c4e56b78737d165ba849.tar.gz Chemical-Simulator-GUI-0a695c879d79b326b901c4e56b78737d165ba849.tar.bz2 Chemical-Simulator-GUI-0a695c879d79b326b901c4e56b78737d165ba849.zip |
Units updated
Diffstat (limited to 'UnitOperations.py')
-rw-r--r-- | UnitOperations.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/UnitOperations.py b/UnitOperations.py index 5c53f59..410cdd1 100644 --- a/UnitOperations.py +++ b/UnitOperations.py @@ -178,8 +178,8 @@ class ShortcutColumn(UnitOperation): self.variables = { 'HKey' : {'name':'Heavy Key', 'value':None, 'unit':''}, 'LKey' : {'name':'Light Key', 'value':None, 'unit':''}, - 'HKey_x_pc' : {'name':'Heavy Key Mole Fraction', 'value':0.01, 'unit':'mol/s'}, - 'LKey_x_pc' : {'name':'Light Key Mole Fraction', 'value':0.01, 'unit':'mol/s'}, + 'HKey_x_pc' : {'name':'Heavy Key Mole Fraction', 'value':0.01, 'unit':''}, + 'LKey_x_pc' : {'name':'Light Key Mole Fraction', 'value':0.01, 'unit':''}, 'Ctype' : {'name':'Condensor Type', 'value':None, 'unit':''}, 'thermo_package' : {'name':'Thermo Package', 'value':'Raoults_Law', 'unit':''}, 'Pcond' : {'name':'Condensor Pressure', 'value':101325, 'unit':'Pa'}, @@ -306,7 +306,7 @@ class CompoundSeparator(UnitOperation): self.no_of_inputs = 1 self.no_of_outputs = 2 - self.SepFact_modes = ['Molar_Flow (mol/s)', 'Mass_Flow (kg/s)', 'Inlet_Molar_Flow_Percent', 'Outlet_Molar_Flow_Percent'] + self.SepFact_modes = ['Molar_Flow (mol/s)', 'Mass_Flow (g/s)', 'Inlet_Molar_Flow_Percent', 'Outlet_Molar_Flow_Percent'] type(self).counter += 1 self.variables = { |