def __init__(self, name="elasticityexplicittri3"):
   """
   Constructor.
   """
   IntegratorElasticity.__init__(self, name)
   ModuleElasticityExplicitTri3.__init__(self)
   self._loggingPrefix = "ElEx "
   return
Esempio n. 2
0
 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
Esempio n. 4
0
    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
Esempio n. 6
0
 def _verifyConfiguration(self):
     ModuleElasticityExplicitTri3.verifyConfiguration(self, self.mesh())
     return