diff options
author | pravindalve | 2023-01-04 21:18:02 +0530 |
---|---|---|
committer | GitHub | 2023-01-04 21:18:02 +0530 |
commit | e65657bc794c50422248d5add590c5c85b1affc5 (patch) | |
tree | 0337f9333927c5db70a3f3d1f06fec7c48f1a163 /Streams.py | |
parent | ecf089991f8f3c15c3c99f376be3b954ec5b3545 (diff) | |
parent | 76406147fef0b5ceb2d03e023794725bca88c4ee (diff) | |
download | Chemical-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.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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] |