def __init__(self, name="elasticityexplicittet4"):
   """
   Constructor.
   """
   IntegratorElasticity.__init__(self, name)
   ModuleElasticityExplicitTet4.__init__(self)
   self._loggingPrefix = "ElEx "
   return
Exemple #2
0
 def __init__(self, name="elasticityexplicittet4"):
     """
 Constructor.
 """
     IntegratorElasticity.__init__(self, name)
     ModuleElasticityExplicitTet4.__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)
    ModuleElasticityExplicitTet4.initialize(self, self.mesh())
    self._initializeOutput(totalTime, numTimeSteps, normalizer)
    
    self._eventLogger.eventEnd(logEvent)
    return
Exemple #4
0
    def initialize(self, totalTime, numTimeSteps, normalizer):
        """
    Do initialization.
    """
        logEvent = "%sinit" % self._loggingPrefix
        self._eventLogger.eventBegin(logEvent)

        IntegratorElasticity.initialize(self, totalTime, numTimeSteps,
                                        normalizer)
        ModuleElasticityExplicitTet4.initialize(self, self.mesh())
        self._initializeOutput(totalTime, numTimeSteps, normalizer)

        self._eventLogger.eventEnd(logEvent)
        return
 def _verifyConfiguration(self):
   ModuleElasticityExplicitTet4.verifyConfiguration(self, self.mesh())
   return
Exemple #6
0
 def _verifyConfiguration(self):
     ModuleElasticityExplicitTet4.verifyConfiguration(self, self.mesh())
     return