示例#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