summaryrefslogtreecommitdiff
path: root/OMChem/Flowsheet.py
diff options
context:
space:
mode:
authorpravindalve2021-02-11 00:48:31 +0530
committerpravindalve2021-02-11 00:48:31 +0530
commit8336446737774a7a0b336d02a3701166577250e5 (patch)
treecf5595d8d5f08662b52009441e2e8ed9871bb395 /OMChem/Flowsheet.py
parent47a2cf43129fa18cbac56df8d53208a1b21ea4f7 (diff)
downloadChemical-Simulator-GUI-8336446737774a7a0b336d02a3701166577250e5.tar.gz
Chemical-Simulator-GUI-8336446737774a7a0b336d02a3701166577250e5.tar.bz2
Chemical-Simulator-GUI-8336446737774a7a0b336d02a3701166577250e5.zip
Fixes for problem for running simulation
Diffstat (limited to 'OMChem/Flowsheet.py')
-rw-r--r--OMChem/Flowsheet.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/OMChem/Flowsheet.py b/OMChem/Flowsheet.py
index 79608ec..4fb0459 100644
--- a/OMChem/Flowsheet.py
+++ b/OMChem/Flowsheet.py
@@ -121,7 +121,7 @@ class Flowsheet():
self.stm = ['MaterialStream','EngStm']
for unitop in self.unit_operations:
if unitop.type not in self.stm:
- for j in unitop.output_stms:
+ for j in unitop.output_stms.values():
self.outlist.append(j)
for unitop in self.unit_operations: