def __init__(self, name="elasticityexplicittri3"): """ Constructor. """ IntegratorElasticity.__init__(self, name) ModuleElasticityExplicitTri3.__init__(self) self._loggingPrefix = "ElEx " return
def initialize(self, totalTime, numTimeSteps, normalizer): """ Do initialization. """ logEvent = "%sinit" % self._loggingPrefix self._eventLogger.eventBegin(logEvent) IntegratorElasticity.initialize(self, totalTime, numTimeSteps, normalizer) ModuleElasticityExplicitTri3.initialize(self, self.mesh()) self._initializeOutput(totalTime, numTimeSteps, normalizer) self._eventLogger.eventEnd(logEvent) return
def _verifyConfiguration(self): ModuleElasticityExplicitTri3.verifyConfiguration(self, self.mesh()) return