Пример #1
0
 def __init__(self, name="elasticityimplicit"):
   """
   Constructor.
   """
   IntegratorElasticity.__init__(self, name)
   ModuleElasticityImplicit.__init__(self)
   self._loggingPrefix = "ElIm "
   return
Пример #2
0
 def __init__(self, name="elasticityimplicit"):
   """
   Constructor.
   """
   IntegratorElasticity.__init__(self, name)
   ModuleElasticityImplicit.__init__(self)
   self._loggingPrefix = "ElIm "
   return
Пример #3
0
  def initialize(self, totalTime, numTimeSteps, normalizer):
    """
    Do initialization.
    """
    logEvent = "%sinit" % self._loggingPrefix
    self._eventLogger.eventBegin(logEvent)

    IntegratorElasticity.initialize(self, totalTime, numTimeSteps, normalizer)
    ModuleElasticityImplicit.initialize(self, self.mesh())
    self._initializeOutput(totalTime, numTimeSteps, normalizer)
    
    self._eventLogger.eventEnd(logEvent)
    return
Пример #4
0
  def initialize(self, totalTime, numTimeSteps, normalizer):
    """
    Do initialization.
    """
    logEvent = "%sinit" % self._loggingPrefix
    self._eventLogger.eventBegin(logEvent)

    IntegratorElasticity.initialize(self, totalTime, numTimeSteps, normalizer)
    ModuleElasticityImplicit.initialize(self, self.mesh())
    self._initializeOutput(totalTime, numTimeSteps, normalizer)
    
    self._eventLogger.eventEnd(logEvent)
    return
Пример #5
0
 def _verifyConfiguration(self):
   ModuleElasticityImplicit.verifyConfiguration(self, self.mesh())
   return
Пример #6
0
 def _verifyConfiguration(self):
   ModuleElasticityImplicit.verifyConfiguration(self, self.mesh())
   return