def __init__(self, name="elasticityexplicit"): """ Constructor. """ IntegratorElasticity.__init__(self, name) ModuleElasticityExplicit.__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) ModuleElasticityExplicit.initialize(self, self.mesh()) self._initializeOutput(totalTime, numTimeSteps, normalizer) self._eventLogger.eventEnd(logEvent) return
def _verifyConfiguration(self): ModuleElasticityExplicit.verifyConfiguration(self, self.mesh()) return