diff options
author | pravindalve | 2021-02-11 00:48:31 +0530 |
---|---|---|
committer | pravindalve | 2021-02-11 00:48:31 +0530 |
commit | 8336446737774a7a0b336d02a3701166577250e5 (patch) | |
tree | cf5595d8d5f08662b52009441e2e8ed9871bb395 /OMChem/Flowsheet.py | |
parent | 47a2cf43129fa18cbac56df8d53208a1b21ea4f7 (diff) | |
download | Chemical-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.py | 2 |
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: |