diff options
author | SaurabhAgarwala | 2019-12-31 19:57:01 +0530 |
---|---|---|
committer | SaurabhAgarwala | 2019-12-31 19:57:01 +0530 |
commit | c350054473ffb5bd7275f2ed939ec2aff6e2afab (patch) | |
tree | 3cbd268f81d5e4aa9115b6801f61bd5b50f0a01c /container.py | |
parent | 262511f8b7999c311f1852007bbe0f8de2006e89 (diff) | |
download | Chemical-Simulator-GUI-c350054473ffb5bd7275f2ed939ec2aff6e2afab.tar.gz Chemical-Simulator-GUI-c350054473ffb5bd7275f2ed939ec2aff6e2afab.tar.bz2 Chemical-Simulator-GUI-c350054473ffb5bd7275f2ed939ec2aff6e2afab.zip |
Flowsheet functions clubbed together, merged UnitOprns.py with UnitOperations.py
Diffstat (limited to 'container.py')
-rw-r--r-- | container.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/container.py b/container.py index 3652031..ba67be0 100644 --- a/container.py +++ b/container.py @@ -92,6 +92,7 @@ class Container(): for i in self.unitOp: if(i.name==name): return i + def addCompounds(self,comp): self.compounds = comp |