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


Python FIATSimplex.initialize方法代码示例

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


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

示例1: test_initialize_tet4

# 需要导入模块: from pylith.feassemble.FIATSimplex import FIATSimplex [as 别名]
# 或者: from pylith.feassemble.FIATSimplex.FIATSimplex import initialize [as 别名]
  def test_initialize_tet4(self):
    """
    Test initialize() with tet4 cell.
    """
    cell = FIATSimplex()
    cell.inventory.dimension = 3
    cell.inventory.degree = 1
    cell._configure()
    cell.initialize(spaceDim=3)

    cellE = Tet4()
    self._checkVals(cellE, cell)
    from pylith.feassemble.CellGeometry import GeometryTet3D
    self.failUnless(isinstance(cell.geometry, GeometryTet3D))
    return
开发者ID:panzhengyang,项目名称:pylith,代码行数:17,代码来源:TestFIATSimplex.py

示例2: test_initialize_line3

# 需要导入模块: from pylith.feassemble.FIATSimplex import FIATSimplex [as 别名]
# 或者: from pylith.feassemble.FIATSimplex.FIATSimplex import initialize [as 别名]
  def test_initialize_line3(self):
    """
    Test initialize() with line3 cell.
    """
    cell = FIATSimplex()
    cell.inventory.dimension = 1
    cell.inventory.degree = 2
    cell.inventory.order  = 2
    cell._configure()
    cell.initialize(spaceDim=2)

    cellE = Line3()
    self._checkVals(cellE, cell)
    from pylith.feassemble.CellGeometry import GeometryLine2D
    self.failUnless(isinstance(cell.geometry, GeometryLine2D))
    return
开发者ID:jedbrown,项目名称:pylith,代码行数:18,代码来源:TestFIATSimplex.py

示例3: test_initialize_tri3_collocated

# 需要导入模块: from pylith.feassemble.FIATSimplex import FIATSimplex [as 别名]
# 或者: from pylith.feassemble.FIATSimplex.FIATSimplex import initialize [as 别名]
  def test_initialize_tri3_collocated(self):
    """
    Test initialize() with tri3 cell.
    """
    cell = FIATSimplex()
    cell.inventory.dimension = 2
    cell.inventory.degree = 1
    cell.inventory.collocateQuad = True
    cell._configure()
    cell.initialize(spaceDim=2)

    cellE = Tri3Collocated()
    self._checkVals(cellE, cell)
    from pylith.feassemble.CellGeometry import GeometryTri2D
    self.failUnless(isinstance(cell.geometry, GeometryTri2D))
    return
开发者ID:panzhengyang,项目名称:pylith,代码行数:18,代码来源:TestFIATSimplex.py

示例4: test_initialize_line2_collodated

# 需要导入模块: from pylith.feassemble.FIATSimplex import FIATSimplex [as 别名]
# 或者: from pylith.feassemble.FIATSimplex.FIATSimplex import initialize [as 别名]
  def test_initialize_line2_collodated(self):
    """
    Test initialize() with line2 cell.
    """
    cell = FIATSimplex()
    cell.inventory.dimension = 1
    cell.inventory.degree = 1
    cell.inventory.order  = 1
    cell.inventory.collocateQuad = True
    cell._configure()
    cell.initialize(spaceDim=1)

    cellE = Line2Collocated()
    self._checkVals(cellE, cell)
    from pylith.feassemble.CellGeometry import GeometryLine1D
    self.failUnless(isinstance(cell.geometry, GeometryLine1D))
    return
开发者ID:jedbrown,项目名称:pylith,代码行数:19,代码来源:TestFIATSimplex.py


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