Exemplo n.º 1
0
 def _configure(self):
   """
   Setup members using inventory.
   """
   BoundaryCondition._configure(self)
   TimeDependentPoints._configure(self)
   return
Exemplo n.º 2
0
 def _configure(self):
     """
 Setup members using inventory.
 """
     BoundaryCondition._configure(self)
     TimeDependentPoints._configure(self)
     return
Exemplo n.º 3
0
 def _configure(self):
   """
   Setup members using inventory.
   """
   try:
     BoundaryCondition._configure(self)
     TimeDependentPoints._configure(self)
   except ValueError, err:
     aliases = ", ".join(self.aliases)
     raise ValueError("Error while configuring Dirichlet boundary condition "
                      "(%s):\n%s" % (aliases, err.message))
Exemplo n.º 4
0
 def _configure(self):
     """
 Setup members using inventory.
 """
     try:
         BoundaryCondition._configure(self)
         TimeDependentPoints._configure(self)
     except ValueError, err:
         aliases = ", ".join(self.aliases)
         raise ValueError(
             "Error while configuring Dirichlet boundary condition "
             "(%s):\n%s" % (aliases, err.message))