summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrenda-br2023-01-30 14:14:46 +0530
committerbrenda-br2023-01-30 14:14:46 +0530
commit239825064c3895910f7a800134179e456b897415 (patch)
tree0e1a2d1f2a615ce5c6c1f80a6b5906f3679980da
parenta9e09576c8e977e9fc838fabf2116d5e2cae9e7e (diff)
downloadChemical-Simulator-GUI-239825064c3895910f7a800134179e456b897415.tar.gz
Chemical-Simulator-GUI-239825064c3895910f7a800134179e456b897415.tar.bz2
Chemical-Simulator-GUI-239825064c3895910f7a800134179e456b897415.zip
Update Streams.py
-rw-r--r--Streams.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/Streams.py b/Streams.py
index 739010a..ef92f78 100644
--- a/Streams.py
+++ b/Streams.py
@@ -155,8 +155,17 @@ class MaterialStream():
var5_name = self.variables['xvap']['name']
var5_val = self.variables['xvap']['value']
var5_unit = self.variables['xvap']['unit']
+ var6_name = self.variables['F_pc']['name']
+ var6_val = self.variables['F_pc']['value']
+ var6_unit = self.variables['F_pc']['unit']
+ var7_name = self.variables['Fm_pc']['name']
+ var7_val = self.variables['Fm_pc']['value']
+ var7_unit = self.variables['Fm_pc']['unit']
+
dict = {var1_name:str(var1_val)+' '+var1_unit,
var2_name:str(var2_val)+' '+var2_unit,
+ var6_name:str(var6_val)+' '+var6_unit,
+ var7_name:str(var7_val)+' '+var7_unit,
var3_name:str(var3_val)+' '+var3_unit,
var4_name:str(var4_val)+' '+var4_unit,
var5_name:str(var5_val)+' '+var5_unit, }