當前位置: 首頁>>代碼示例>>Python>>正文


Python FIATLagrange.initialize方法代碼示例

本文整理匯總了Python中pylith.feassemble.FIATLagrange.FIATLagrange.initialize方法的典型用法代碼示例。如果您正苦於以下問題:Python FIATLagrange.initialize方法的具體用法?Python FIATLagrange.initialize怎麽用?Python FIATLagrange.initialize使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在pylith.feassemble.FIATLagrange.FIATLagrange的用法示例。


在下文中一共展示了FIATLagrange.initialize方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_initialize_hex27

# 需要導入模塊: from pylith.feassemble.FIATLagrange import FIATLagrange [as 別名]
# 或者: from pylith.feassemble.FIATLagrange.FIATLagrange import initialize [as 別名]
  def test_initialize_hex27(self):
    """
    Test initialize() with hex27 cell.
    """
    cell = FIATLagrange()
    cell.inventory.dimension = 3
    cell.inventory.degree = 2
    cell.inventory.order  = 3
    cell._configure()
    cell.initialize(spaceDim=3)

    cellE = Hex27()
    self._checkVals(cellE, cell)
    from pylith.feassemble.CellGeometry import GeometryHex3D
    self.failUnless(isinstance(cell.geometry, GeometryHex3D))
    return
開發者ID:panzhengyang,項目名稱:pylith,代碼行數:18,代碼來源:TestFIATLagrange.py

示例2: test_initialize_quad4

# 需要導入模塊: from pylith.feassemble.FIATLagrange import FIATLagrange [as 別名]
# 或者: from pylith.feassemble.FIATLagrange.FIATLagrange import initialize [as 別名]
  def test_initialize_quad4(self):
    """
    Test initialize() with quad4 cell.
    """
    cell = FIATLagrange()
    cell.inventory.dimension = 2
    cell.inventory.degree = 1
    cell.inventory.order  = 2
    cell._configure()
    cell.initialize(spaceDim=2)

    cellE = Quad4()
    self._checkVals(cellE, cell)
    from pylith.feassemble.CellGeometry import GeometryQuad2D
    self.failUnless(isinstance(cell.geometry, GeometryQuad2D))
    return
開發者ID:panzhengyang,項目名稱:pylith,代碼行數:18,代碼來源:TestFIATLagrange.py

示例3: test_initialize_line2_collocated

# 需要導入模塊: from pylith.feassemble.FIATLagrange import FIATLagrange [as 別名]
# 或者: from pylith.feassemble.FIATLagrange.FIATLagrange import initialize [as 別名]
  def test_initialize_line2_collocated(self):
    """
    Test initialize() with line2 cell.
    """
    cell = FIATLagrange()
    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,代碼行數:20,代碼來源:TestFIATLagrange.py


注:本文中的pylith.feassemble.FIATLagrange.FIATLagrange.initialize方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。