当前位置: 首页>>代码示例>>Python>>正文


Python PetscComponent._configure方法代码示例

本文整理汇总了Python中pylith.utils.PetscComponent.PetscComponent._configure方法的典型用法代码示例。如果您正苦于以下问题:Python PetscComponent._configure方法的具体用法?Python PetscComponent._configure怎么用?Python PetscComponent._configure使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在pylith.utils.PetscComponent.PetscComponent的用法示例。


在下文中一共展示了PetscComponent._configure方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: _configure

# 需要导入模块: from pylith.utils.PetscComponent import PetscComponent [as 别名]
# 或者: from pylith.utils.PetscComponent.PetscComponent import _configure [as 别名]
  def _configure(self):
    """
    Set members based using inventory.
    """
    PetscComponent._configure(self)
    self.matrixType = self.inventory.matrixType
    self.timeStep = self.inventory.timeStep
    self.solver = self.inventory.solver
    self.output = self.inventory.output
    self.viewJacobian = self.inventory.viewJacobian
    self.jacobianViewer = self.inventory.jacobianViewer
    self.perfLogger = self.inventory.perfLogger

    import journal
    self._debug = journal.debug(self.name)

    if self.inventory.useCustomConstraintPC and \
           not self.inventory.useSplitFields:
      print "WARNING: Request to use custom preconditioner for Lagrange " \
            "constraints without splitting fields. " \
            "Setting split fields flag to 'True'."
      self.inventory.useSplitFields = True

    ModuleFormulation.splitFields(self, self.inventory.useSplitFields)
    ModuleFormulation.useCustomConstraintPC(self, self.inventory.useCustomConstraintPC)

    return
开发者ID:youngsolar,项目名称:pylith,代码行数:29,代码来源:Formulation.py

示例2: _configure

# 需要导入模块: from pylith.utils.PetscComponent import PetscComponent [as 别名]
# 或者: from pylith.utils.PetscComponent.PetscComponent import _configure [as 别名]
 def _configure(self):
   """
   Set members based using inventory.
   """
   PetscComponent._configure(self)
   self.verbose = self.inventory.verbose
   return
开发者ID:geodynamics,项目名称:pylith,代码行数:9,代码来源:Logger.py

示例3: _configure

# 需要导入模块: from pylith.utils.PetscComponent import PetscComponent [as 别名]
# 或者: from pylith.utils.PetscComponent.PetscComponent import _configure [as 别名]
 def _configure(self):
   """
   Setup members using inventory.
   """
   PetscComponent._configure(self)
   self.dt = self.inventory.dt
   return
开发者ID:jjle,项目名称:pylith,代码行数:9,代码来源:CheckpointTimer.py

示例4: _configure

# 需要导入模块: from pylith.utils.PetscComponent import PetscComponent [as 别名]
# 或者: from pylith.utils.PetscComponent.PetscComponent import _configure [as 别名]
 def _configure(self):
   """
   Set members based using inventory.
   """
   PetscComponent._configure(self)
   self.perfLogger = self.inventory.perfLogger
   return
开发者ID:youngsolar,项目名称:pylith,代码行数:9,代码来源:CellFilter.py

示例5: _configure

# 需要导入模块: from pylith.utils.PetscComponent import PetscComponent [as 别名]
# 或者: from pylith.utils.PetscComponent.PetscComponent import _configure [as 别名]
 def _configure(self):
   """
   Set members based using inventory.
   """
   PetscComponent._configure(self)
   self.filename = self.inventory.filename
   return
开发者ID:youngsolar,项目名称:pylith,代码行数:9,代码来源:Xdmf.py

示例6: _configure

# 需要导入模块: from pylith.utils.PetscComponent import PetscComponent [as 别名]
# 或者: from pylith.utils.PetscComponent.PetscComponent import _configure [as 别名]
 def _configure(self):
   """
   Set members based using inventory.
   """
   PetscComponent._configure(self)
   self.writePartition = self.inventory.writePartition
   self.dataWriter = self.inventory.dataWriter
   return
开发者ID:rishabhdutta,项目名称:pylith,代码行数:10,代码来源:Distributor.py

示例7: _configure

# 需要导入模块: from pylith.utils.PetscComponent import PetscComponent [as 别名]
# 或者: from pylith.utils.PetscComponent.PetscComponent import _configure [as 别名]
 def _configure(self):
   """
   Set members based using inventory.
   """
   PetscComponent._configure(self)
   self.totalTime = self.inventory.totalTime
   self.startTime = self.inventory.startTime
   return
开发者ID:rishabhdutta,项目名称:pylith,代码行数:10,代码来源:TimeStep.py

示例8: _configure

# 需要导入模块: from pylith.utils.PetscComponent import PetscComponent [as 别名]
# 或者: from pylith.utils.PetscComponent.PetscComponent import _configure [as 别名]
 def _configure(self):
   """
   Setup members using inventory.
   """
   PetscComponent._configure(self)
   ModuleEqKinSrc.originTime(self, self.inventory.originTime.value)
   ModuleEqKinSrc.slipfn(self, self.inventory.slipfn)
   return
开发者ID:rishabhdutta,项目名称:pylith,代码行数:10,代码来源:EqKinSrc.py

示例9: _configure

# 需要导入模块: from pylith.utils.PetscComponent import PetscComponent [as 别名]
# 或者: from pylith.utils.PetscComponent.PetscComponent import _configure [as 别名]
 def _configure(self):
   """
   Set members based using inventory.
   """
   PetscComponent._configure(self)
   self.debug = self.inventory.debug
   self.interpolate = self.inventory.interpolate
   return
开发者ID:youngsolar,项目名称:pylith,代码行数:10,代码来源:MeshGenerator.py

示例10: _configure

# 需要导入模块: from pylith.utils.PetscComponent import PetscComponent [as 别名]
# 或者: from pylith.utils.PetscComponent.PetscComponent import _configure [as 别名]
  def _configure(self):
    """
    Set members based using inventory.
    """
    PetscComponent._configure(self)

    self.updatePercent = self.inventory.updatePercent
    return
开发者ID:rishabhdutta,项目名称:pylith,代码行数:10,代码来源:ProgressMonitor.py

示例11: _configure

# 需要导入模块: from pylith.utils.PetscComponent import PetscComponent [as 别名]
# 或者: from pylith.utils.PetscComponent.PetscComponent import _configure [as 别名]
  def _configure(self):
    """
    Set members based using inventory.
    """
    PetscComponent._configure(self)

    self.useCUDA = self.inventory.useCUDA
    return
开发者ID:jjle,项目名称:pylith,代码行数:10,代码来源:Solver.py

示例12: _configure

# 需要导入模块: from pylith.utils.PetscComponent import PetscComponent [as 别名]
# 或者: from pylith.utils.PetscComponent.PetscComponent import _configure [as 别名]
 def _configure(self):
   """
   Set members based using inventory.
   """
   PetscComponent._configure(self)
   self.minJacobian(self.inventory.minJacobian)
   self.checkConditioning(self.inventory.checkConditioning)
   self.cell = self.inventory.cell
   return
开发者ID:jjle,项目名称:pylith,代码行数:11,代码来源:Quadrature.py

示例13: _configure

# 需要导入模块: from pylith.utils.PetscComponent import PetscComponent [as 别名]
# 或者: from pylith.utils.PetscComponent.PetscComponent import _configure [as 别名]
 def _configure(self):
   """
   Set members based using inventory.
   """
   PetscComponent._configure(self)
   self.filename = self.inventory.filename
   self.timeFormat = self.inventory.timeFormat
   self.timeConstant = self.inventory.timeConstant
   return
开发者ID:rishabhdutta,项目名称:pylith,代码行数:11,代码来源:JacobianViewer.py

示例14: _configure

# 需要导入模块: from pylith.utils.PetscComponent import PetscComponent [as 别名]
# 或者: from pylith.utils.PetscComponent.PetscComponent import _configure [as 别名]
  def _configure(self):
    """
    Set members based using inventory.
    """
    PetscComponent._configure(self)

    self.useCUDA = self.inventory.useCUDA
    self.createNullSpace = self.inventory.createNullSpace
    return
开发者ID:rishabhdutta,项目名称:pylith,代码行数:11,代码来源:Solver.py

示例15: _configure

# 需要导入模块: from pylith.utils.PetscComponent import PetscComponent [as 别名]
# 或者: from pylith.utils.PetscComponent.PetscComponent import _configure [as 别名]
 def _configure(self):
   """
   Setup members using inventory.
   """
   PetscComponent._configure(self)
   self.faultQuadrature = self.inventory.faultQuadrature
   self.upDir = map(float, self.inventory.upDir)
   ModuleFault.id(self, self.inventory.matId)
   ModuleFault.label(self, self.inventory.faultLabel)
   ModuleFault.edge(self, self.inventory.faultEdge)
   self.perfLogger = self.inventory.perfLogger
   return
开发者ID:geodynamics,项目名称:pylith,代码行数:14,代码来源:Fault.py


注:本文中的pylith.utils.PetscComponent.PetscComponent._configure方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。