Example #1
0
 def _configure(self):
   """
   Setup members using inventory.
   """
   Application._configure(self)
   self.petsc = self.inventory.petsc
   return
Example #2
0
 def _configure(self):
     """
 Setup members using inventory.
 """
     Application._configure(self)
     self.petsc = self.inventory.petsc
     return
Example #3
0
  def _configure(self):
    """
    Setup members using inventory.
    """
    Application._configure(self)
    self.mesher = self.inventory.mesher
    self.petsc = self.inventory.petsc

    import journal
    self._debug = journal.debug(self.name)
    return
Example #4
0
 def __init__(self, name="petscapp"):
   """
   Constructor.
   """
   Application.__init__(self, name)
   return
Example #5
0
 def __init__(self, name="petscapp"):
     """
 Constructor.
 """
     Application.__init__(self, name)
     return