diff options
author | brenda-br | 2023-02-07 16:27:18 +0530 |
---|---|---|
committer | brenda-br | 2023-02-07 16:27:18 +0530 |
commit | 80dc2915ff93611a3a8d4852d328f71462ae534d (patch) | |
tree | 51a40bafc38ad69977bd28807eac076038bffd5d /Streams.py | |
parent | f53af896c241d0628625452ef66f4a7255ec2846 (diff) | |
download | Chemical-Simulator-GUI-80dc2915ff93611a3a8d4852d328f71462ae534d.tar.gz Chemical-Simulator-GUI-80dc2915ff93611a3a8d4852d328f71462ae534d.tar.bz2 Chemical-Simulator-GUI-80dc2915ff93611a3a8d4852d328f71462ae534d.zip |
Fix #52 Input data tab updated with values and disabled
Diffstat (limited to 'Streams.py')
-rw-r--r-- | Streams.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -156,9 +156,9 @@ class MaterialStream(): vapMolFrac_name = self.variables['xvap']['name'] vapMolFrac_val = self.variables['xvap']['value'] vapMolFrac_unit = self.variables['xvap']['unit'] - mixMolFlo_name = self.variables['F_pc']['name'] - mixMolFlo_val = self.variables['F_pc']['value'] - mixMolFlo_unit = self.variables['F_pc']['unit'] + mixMolFlo_name = self.variables['F_p[1]']['name'] + mixMolFlo_val = self.variables['F_p[1]']['value'] + mixMolFlo_unit = self.variables['F_p[1]']['unit'] mixMassFlo_name = self.variables['Fm_p[1]']['name'] mixMassFlo_val = self.variables['Fm_p[1]']['value'] mixMassFlo_unit = self.variables['Fm_p[1]']['unit'] |