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


Python OutputManager.writeInfo方法代码示例

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


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

示例1: test_distribute

# 需要导入模块: from pylith.meshio.OutputManager import OutputManager [as 别名]
# 或者: from pylith.meshio.OutputManager.OutputManager import writeInfo [as 别名]
  def test_distribute(self):
    """
    Test distribute()
    """
    generator = MeshGenSimple()
    generator.interpolate = True
    generator.setBoundary(generator.createCubeBoundary())
    mesh = generator.create()

    from pylith.meshio.OutputManager import OutputManager
    io = OutputManager()
    io._configure()
    io.writer._configure()
    io.writer.filename = 'mesh.vtk'
    from spatialdata.geocoords.CSCart import CSCart
    io.coordsys = CSCart()
    mesh.coordsys = CSCart()
    self.mesh = mesh

    from pyre.units.time import s
    io.preinitialize(self)
    io.initialize()
    io.writeInfo()

    from pylith.topology.Distributor import Distributor
    distributor = Distributor()
    distributor.partitioner = "chaco"
    newMesh = distributor.distribute(mesh)
    self.mesh = newMesh
    io.writer.filename = 'newMesh.vtk'
    io.writeInfo()
    return
开发者ID:jjle,项目名称:pylith,代码行数:34,代码来源:TestMeshGenSimple.py

示例2: test_writeInfo

# 需要导入模块: from pylith.meshio.OutputManager import OutputManager [as 别名]
# 或者: from pylith.meshio.OutputManager.OutputManager import writeInfo [as 别名]
 def test_writeInfo(self):
   """
   Test writeInfo().
   """
   output = OutputManager()
   output.inventory.writer.inventory.filename = "output.vtk"
   output.inventory.writer._configure()
   output.inventory.vertexInfoFields = ["vertex info"]
   output.inventory.cellInfoFields = ["cell info"]
   output._configure()
   
   dataProvider = TestProvider()
   output.preinitialize(dataProvider)
   output.initialize(self.normalizer)
   
   output.open(totalTime=5.0, numTimeSteps=2)
   output.writeInfo()
   output.close()
   return
开发者ID:rishabhdutta,项目名称:pylith,代码行数:21,代码来源:TestOutputManagerMesh.py


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