예제 #1
0
파일: Implicit.py 프로젝트: xiaoxiz/pylith
 def __init__(self, name="implicit"):
   """
   Constructor.
   """
   Formulation.__init__(self, name)
   ModuleImplicit.__init__(self)
   self._loggingPrefix = "TSIm "
   return
예제 #2
0
 def __init__(self, name="implicit"):
   """
   Constructor.
   """
   Formulation.__init__(self, name)
   ModuleImplicit.__init__(self)
   self._loggingPrefix = "TSIm "
   return
예제 #3
0
 def __init__(self, name="explicit"):
   """
   Constructor.
   """
   Formulation.__init__(self, name)
   ModuleExplicit.__init__(self)
   self._loggingPrefix = "TSEx "
   self.dtStable = None
   return
예제 #4
0
 def __init__(self, name="explicit"):
     """
 Constructor.
 """
     Formulation.__init__(self, name)
     ModuleExplicit.__init__(self)
     self._loggingPrefix = "TSEx "
     self.dtStable = None
     return