コード例 #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
ファイル: Implicit.py プロジェクト: rishabhdutta/pylith
 def __init__(self, name="implicit"):
   """
   Constructor.
   """
   Formulation.__init__(self, name)
   ModuleImplicit.__init__(self)
   self._loggingPrefix = "TSIm "
   return
コード例 #3
0
ファイル: Explicit.py プロジェクト: geodynamics/pylith
 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