summaryrefslogtreecommitdiff
path: root/Streams.py
diff options
context:
space:
mode:
authorpravindalve2023-01-04 21:18:02 +0530
committerGitHub2023-01-04 21:18:02 +0530
commite65657bc794c50422248d5add590c5c85b1affc5 (patch)
tree0337f9333927c5db70a3f3d1f06fec7c48f1a163 /Streams.py
parentecf089991f8f3c15c3c99f376be3b954ec5b3545 (diff)
parent76406147fef0b5ceb2d03e023794725bca88c4ee (diff)
downloadChemical-Simulator-GUI-e65657bc794c50422248d5add590c5c85b1affc5.tar.gz
Chemical-Simulator-GUI-e65657bc794c50422248d5add590c5c85b1affc5.tar.bz2
Chemical-Simulator-GUI-e65657bc794c50422248d5add590c5c85b1affc5.zip
Merge pull request #30 from brenda-br/b_version_1
fix 23,26,27,28,29
Diffstat (limited to 'Streams.py')
-rw-r--r--Streams.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Streams.py b/Streams.py
index ed35261..5f1b840 100644
--- a/Streams.py
+++ b/Streams.py
@@ -99,7 +99,7 @@ class MaterialStream():
dict = {self.mode1:self.variables['P']['value'], self.mode2:self.variables['T']['value'],
"MolFlow":self.variables['F_p[1]']['value'],"x_pc":self.variables['x_pc']['value'],
"Thermo Package": self.thermo_package}
- print('dictionary is :' + str(dict))
+ #print('dictionary is :' + str(dict))
elif(mode=="PH"):
self.mode1 = 'P'
@@ -130,7 +130,7 @@ class MaterialStream():
def param_setter(self,dict):
self.variables['x_pc']['value'] = dict['x_pc'].split(",")
- print('xpc is :' + str(self.variables['x_pc']['value']))
+ #print('xpc is :' + str(self.variables['x_pc']['value']))
self.thermo_package = dict['Thermo Package']
self.variables['F_p[1]']['value'] = dict['MolFlow']
self.variables[self.mode1]['value'] = dict[self.mode1]