summaryrefslogtreecommitdiff
path: root/src/main/python
diff options
context:
space:
mode:
authorrrsr282023-06-13 17:08:44 +0530
committerrrsr282023-06-13 17:08:44 +0530
commitf00e75ba29168d4b9b7fff91700c2e7cfc31b8b7 (patch)
tree73aa5f34749a267c7acb6923ab1e26b8e6a22c5e /src/main/python
parentc9c43134e9d7bc43ea9820ee61ff699f4401018c (diff)
downloadChemical-PFD-f00e75ba29168d4b9b7fff91700c2e7cfc31b8b7.tar.gz
Chemical-PFD-f00e75ba29168d4b9b7fff91700c2e7cfc31b8b7.tar.bz2
Chemical-PFD-f00e75ba29168d4b9b7fff91700c2e7cfc31b8b7.zip
Added class for KettleReboiler
Diffstat (limited to 'src/main/python')
-rw-r--r--src/main/python/shapes/shapes.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/main/python/shapes/shapes.py b/src/main/python/shapes/shapes.py
index b135959..d9f6b52 100644
--- a/src/main/python/shapes/shapes.py
+++ b/src/main/python/shapes/shapes.py
@@ -981,6 +981,15 @@ class ImmersionCoil(NodeItem):
[88.232463407718, 100, "top"]
]
+class KettleReboiler(NodeItem):
+ def __init__(self):
+ super(KettleReboiler, self).__init__("svg/Heating or Cooling Arrangements/Kettle Reboiler")
+ self.grips = [
+ [100, 26.3, "right"],
+ [0, 26.3, "left"],
+ [50, 100, "top"],
+ [50, 0, "bottom"]
+ ]
class HorizontalVessel(NodeItem):
def __init__(self):