diff options
author | SaurabhAgarwala | 2020-01-03 15:54:24 +0530 |
---|---|---|
committer | SaurabhAgarwala | 2020-01-03 15:54:24 +0530 |
commit | 8dfb7d836e438035be2284e49554dac36d0af7bf (patch) | |
tree | 0a14314f4a248fe5ad4627e2f6cd11068e689673 /container.py | |
parent | 4138fd762a45b15dc7dfea661a93a047a0eba4a0 (diff) | |
download | Chemical-Simulator-GUI-8dfb7d836e438035be2284e49554dac36d0af7bf.tar.gz Chemical-Simulator-GUI-8dfb7d836e438035be2284e49554dac36d0af7bf.tar.bz2 Chemical-Simulator-GUI-8dfb7d836e438035be2284e49554dac36d0af7bf.zip |
Made GUI compatible with the new Simulator, abbreviations updated to new convention and few bugs eliminated with code clean up at places
Diffstat (limited to 'container.py')
-rw-r--r-- | container.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/container.py b/container.py index ba67be0..f9106ee 100644 --- a/container.py +++ b/container.py @@ -1,7 +1,4 @@ from OMChem.Flowsheet import Flowsheet -from OMChem.MatStm import MatStm -from OMChem.Mixer import Mixer -from OMChem.Heater import Heater from component_selector import * from collections import defaultdict from PyQt5.QtCore import * @@ -53,7 +50,7 @@ class Container(): self.op.clear() self.ip.clear() self.opl.clear() - stm = ['MatStm','EngStm'] + stm = ['MaterialStream','EngStm'] for i in self.conn: if i.type not in stm: self.op[i]=self.conn[i] |