本文整理汇总了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
示例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
示例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
示例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
示例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
示例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
示例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
示例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
示例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
示例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
示例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
示例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
示例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
示例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
示例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