本文整理汇总了Python中pylith.topology.Mesh.Mesh.coordsys方法的典型用法代码示例。如果您正苦于以下问题:Python Mesh.coordsys方法的具体用法?Python Mesh.coordsys怎么用?Python Mesh.coordsys使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pylith.topology.Mesh.Mesh
的用法示例。
在下文中一共展示了Mesh.coordsys方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: read
# 需要导入模块: from pylith.topology.Mesh import Mesh [as 别名]
# 或者: from pylith.topology.Mesh.Mesh import coordsys [as 别名]
def read(self, debug, interpolate):
"""
Read finite-element mesh and store in Sieve mesh object.
@returns PETSc mesh object containing finite-element mesh
"""
from pylith.mpi.Communicator import mpi_comm_world
comm = mpi_comm_world()
if 0 == comm.rank:
self._info.log("Reading finite-element mesh")
# Set flags
self.debug(debug)
self.interpolate(interpolate)
# Initialize coordinate system
if self.coordsys is None:
raise ValueError, "Coordinate system for mesh is unknown."
from pylith.mpi.Communicator import petsc_comm_world
from pylith.topology.Mesh import Mesh
mesh = Mesh(dim=self.coordsys.spaceDim(), comm=petsc_comm_world())
mesh.coordsys(self.coordsys)
# Read mesh
ModuleMeshIO.read(self, mesh)
return mesh
示例2: test_coordsys
# 需要导入模块: from pylith.topology.Mesh import Mesh [as 别名]
# 或者: from pylith.topology.Mesh.Mesh import coordsys [as 别名]
def test_coordsys(self):
"""
Test coordsys().
"""
from spatialdata.geocoords.CSCart import CSCart
cs = CSCart()
cs.inventory.spaceDim = 2
cs._configure()
mesh = Mesh()
mesh.coordsys(cs)
self.assertEqual(cs.spaceDim(), mesh.coordsys().spaceDim())
return
示例3: test_coordsys
# 需要导入模块: from pylith.topology.Mesh import Mesh [as 别名]
# 或者: from pylith.topology.Mesh.Mesh import coordsys [as 别名]
def test_coordsys(self):
"""
Test coordsys().
"""
mesh = self._getMesh()
submesh = Mesh(mesh=mesh, label="bc")
self.assertEqual(2, submesh.coordsys().spaceDim())
return