summaryrefslogtreecommitdiff
path: root/OMChem/Mixer.py
diff options
context:
space:
mode:
authorpravindalve2020-02-14 13:04:30 +0530
committerGitHub2020-02-14 13:04:30 +0530
commita80b6726f5f70d9a2ec1cbf361e7f607849343bf (patch)
tree333d34f58255003939e70b800d2cd57e40253b6b /OMChem/Mixer.py
parent8189de7d424964aac11b81c8297b7af7fcedd2b8 (diff)
parentdf141f35dccc6b21fcfa575707c6435a39d0002f (diff)
downloadChemical-Simulator-GUI-a80b6726f5f70d9a2ec1cbf361e7f607849343bf.tar.gz
Chemical-Simulator-GUI-a80b6726f5f70d9a2ec1cbf361e7f607849343bf.tar.bz2
Chemical-Simulator-GUI-a80b6726f5f70d9a2ec1cbf361e7f607849343bf.zip
Merge pull request #2 from pravindalve/master
Code restructured, some ui improvizations, undo redo implementation and Binary envelops utility
Diffstat (limited to 'OMChem/Mixer.py')
-rw-r--r--OMChem/Mixer.py19
1 files changed, 14 insertions, 5 deletions
diff --git a/OMChem/Mixer.py b/OMChem/Mixer.py
index 9419de1..c726cdc 100644
--- a/OMChem/Mixer.py
+++ b/OMChem/Mixer.py
@@ -1,28 +1,39 @@
class Mixer():
- def __init__(self,name='mixer',NOI=5,Pcal = 'Inlet_Average'):
+ counter = 1 #
+ def __init__(self,name='Mixer',NOI=5,Pcal = 'Inlet_Average'):
self.NOI = NOI
self.Pcal = Pcal
- self.name = name
self.OM_data_eqn = ''
self.OM_data_init = ''
self.InputStms = []
self.OutputStms = None
self.type = 'Mixer'
+ # new
+ self.name = name + str(Mixer.counter)
+ self.no_of_input = 4
+ self.no_of_output = 1
+ Mixer.counter += 1
+
+ def getname(self):
+ return self.name
+
def modesList(self):
return []
def paramgetter(self,mode=None):
dict = {}
return dict
+
def paramsetter(self,dict):
self.NOI = dict["NOI"]
+
def OM_Flowsheet_Init(self, addedcomp):
self.OM_data_init = ''
comp_count = len(addedcomp)
self.OM_data_init = self.OM_data_init + (
- "Simulator.Unit_Operations.Mixer " + self.name + "(NOC = " + str(comp_count))
+ "Simulator.Unit_Operations.Mixer " + self.name + "(Nc = " + str(comp_count))
self.OM_data_init = self.OM_data_init + (",comp = {")
comp = str(addedcomp).strip('[').strip(']')
comp = comp.replace("'", "")
@@ -35,7 +46,6 @@ class Mixer():
self.InputStms = InputStms
self.OutputStms = OutputStms
-
def OM_Flowsheet_Eqn(self, addedcomp):
self.OM_data_eqn = ''
comp_count = len(addedcomp)
@@ -46,4 +56,3 @@ class Mixer():
strcount += 1
self.OM_data_eqn = self.OM_data_eqn + ('connect(' + self.name + '.outlet,' + self.OutputStms[0].name + '.inlet);\n')
return self.OM_data_eqn
-