diff options
Diffstat (limited to 'UnitOperations.py')
-rw-r--r-- | UnitOperations.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/UnitOperations.py b/UnitOperations.py index 1a5dac1..979f080 100644 --- a/UnitOperations.py +++ b/UnitOperations.py @@ -30,6 +30,7 @@ class UnitOperation(): self.Prop = {} self.x = 2500-30 self.y = 2500-30 + self.pos = None self.Prop = {} self.modeslist = [] self.parameters = {} @@ -69,6 +70,9 @@ class UnitOperation(): print("OUTPUT CONNECTION") self.OutputStms.append(UnitOpr) + def setPos(self,pos): + self.pos = pos + def OM_Flowsheet_Initialize(self): self.OM_data_init = '' |