本文整理汇总了Python中fipy.variables.variable.Variable.getShape方法的典型用法代码示例。如果您正苦于以下问题:Python Variable.getShape方法的具体用法?Python Variable.getShape怎么用?Python Variable.getShape使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类fipy.variables.variable.Variable
的用法示例。
在下文中一共展示了Variable.getShape方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: getShape
# 需要导入模块: from fipy.variables.variable import Variable [as 别名]
# 或者: from fipy.variables.variable.Variable import getShape [as 别名]
def getShape(self):
"""
>>> from fipy.meshes.grid2D import Grid2D
>>> from fipy.variables.cellVariable import CellVariable
>>> mesh = Grid2D(nx=2, ny=3)
>>> var = CellVariable(mesh=mesh)
>>> from fipy.tools import parallel
>>> print parallel.procID > 0 or numerix.allequal(var.shape, (6,))
True
>>> print parallel.procID > 0 or numerix.allequal(var.getArithmeticFaceValue().shape, (17,))
True
>>> print parallel.procID > 0 or numerix.allequal(var.getGrad().shape, (2, 6))
True
>>> print parallel.procID > 0 or numerix.allequal(var.getFaceGrad().shape, (2, 17))
True
"""
return (Variable.getShape(self)
or (self.elementshape + self._getShapeFromMesh(self.getMesh()))
or ())