示例#1
0
 def __init__(self, name="elasticityexplicit"):
   """
   Constructor.
   """
   IntegratorElasticityLgDeform.__init__(self, name)
   ModuleElasticityExplicitLgDeform.__init__(self)
   self._loggingPrefix = "ElEx "
   return
示例#2
0
 def __init__(self, name="elasticityexplicit"):
     """
 Constructor.
 """
     IntegratorElasticityLgDeform.__init__(self, name)
     ModuleElasticityExplicitLgDeform.__init__(self)
     self._loggingPrefix = "ElEx "
     return
示例#3
0
  def initialize(self, totalTime, numTimeSteps, normalizer):
    """
    Do initialization.
    """
    logEvent = "%sinit" % self._loggingPrefix
    self._eventLogger.eventBegin(logEvent)

    IntegratorElasticityLgDeform.initialize(self, totalTime, numTimeSteps, normalizer)
    ModuleElasticityExplicitLgDeform.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)

        IntegratorElasticityLgDeform.initialize(self, totalTime, numTimeSteps,
                                                normalizer)
        ModuleElasticityExplicitLgDeform.initialize(self, self.mesh())
        self._initializeOutput(totalTime, numTimeSteps, normalizer)

        self._eventLogger.eventEnd(logEvent)
        return
示例#5
0
 def _verifyConfiguration(self):
   ModuleElasticityExplicitLgDeform.verifyConfiguration(self, self.mesh())
   return
示例#6
0
 def _verifyConfiguration(self):
     ModuleElasticityExplicitLgDeform.verifyConfiguration(self, self.mesh())
     return