summaryrefslogtreecommitdiff
path: root/OMChem/ConvReactor.py
diff options
context:
space:
mode:
authorpravindalve2020-06-23 20:17:20 +0530
committerGitHub2020-06-23 20:17:20 +0530
commitd3bed1ef7150f8e493ebaed3b841b1fe781e974d (patch)
treef7da5c3e6437fb270a6cb6b5aedb3af1690fdbce /OMChem/ConvReactor.py
parenta80b6726f5f70d9a2ec1cbf361e7f607849343bf (diff)
parent781a2ca03807d166498c0d95ef8c62d9ef3404d6 (diff)
downloadChemical-Simulator-GUI-d3bed1ef7150f8e493ebaed3b841b1fe781e974d.tar.gz
Chemical-Simulator-GUI-d3bed1ef7150f8e493ebaed3b841b1fe781e974d.tar.bz2
Chemical-Simulator-GUI-d3bed1ef7150f8e493ebaed3b841b1fe781e974d.zip
Merge pull request #3 from pravindalve/master
Updates and some bug fixes
Diffstat (limited to 'OMChem/ConvReactor.py')
-rw-r--r--OMChem/ConvReactor.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/OMChem/ConvReactor.py b/OMChem/ConvReactor.py
index 9ad35da..9061294 100644
--- a/OMChem/ConvReactor.py
+++ b/OMChem/ConvReactor.py
@@ -8,12 +8,12 @@ class ConvReactor():
self.Z = str(Z)
self.a = json.dumps(a).replace('[','{').replace(']','}')
self.operation = str(operation)
- self.Tdef = str(Tdef)
self.name = name
self.OM_data_eqn = ''
self.OM_data_init = ''
self.InputStms = []
- self.OutputStms = []
+ self.OutputStms = [] self.Tdef = str(Tdef)
+
self.type = 'ConvReactor'
self.EngStms = EngStms(name="EngStm")