- refactored

- integrated stirrer
This commit is contained in:
jens
2020-12-17 16:28:50 +01:00
parent 311ff974cc
commit ddf8003f5c
14 changed files with 66 additions and 26 deletions
+3 -5
View File
@@ -1,12 +1,10 @@
import abc
from utils.value import AttributeChange
class AStirrer:
@abc.abstractmethod
def name(self):
return ""
class AStirrer(AttributeChange):
def __init__(self, dt):
AttributeChange.__init__(self)
self.dt = dt
self.speed = 0
self.cycleTime = 1