summaryrefslogtreecommitdiff
path: root/Streams.py
diff options
context:
space:
mode:
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]