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


Python FIATLagrange.FIATLagrange類代碼示例

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


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

示例1: test_initialize

  def test_initialize(self):
    """
    Test initialize().
    """
    # No quadrature
    output = OutputManager()
    output.inventory.writer.inventory.filename = "test.vtk"
    output.inventory.writer._configure()
    output._configure()
    dataProvider = TestProvider()
    output.preinitialize(dataProvider)
    output.initialize(self.normalizer)

    # With quadrature
    from pylith.feassemble.FIATLagrange import FIATLagrange
    from pylith.feassemble.Quadrature import Quadrature
    cell = FIATLagrange()
    cell.inventory.dimension = 3
    cell.inventory.degree = 2
    cell.inventory.order = 2
    cell._configure()

    quadrature = Quadrature()
    quadrature.inventory.cell = cell
    quadrature._configure()
    
    output = OutputManager()
    output.inventory.writer.inventory.filename = "test.vtk"
    output.inventory.writer._configure()
    output._configure()
    dataProvider = TestProvider()
    output.preinitialize(dataProvider)
    output.initialize(self.normalizer, quadrature)
    return
開發者ID:rishabhdutta,項目名稱:pylith,代碼行數:34,代碼來源:TestOutputManagerMesh.py

示例2: test_initialize_quad4

  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,代碼行數:16,代碼來源:TestFIATLagrange.py

示例3: test_initialize_hex27

  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,代碼行數:16,代碼來源:TestFIATLagrange.py

示例4: test_initialize_line2_collocated

  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,代碼行數:18,代碼來源:TestFIATLagrange.py

示例5: test_lagrange3D

  def test_lagrange3D(self):
    """
    Test setup of quadrature for Lagrange cells for a 3-D problem.
    """
    spaceDim = 3

    cell = FIATLagrange()
    cell.inventory.dimension = 3
    cell._configure()
    
    quadrature = Quadrature()
    quadrature.inventory.cell = cell
    quadrature._configure()

    quadrature.preinitialize(spaceDim)
    self.assertEqual(3, quadrature.cellDim())
    self.assertEqual(spaceDim, quadrature.spaceDim())
    self.assertEqual(8, quadrature.numBasis())
    return
開發者ID:jjle,項目名稱:pylith,代碼行數:19,代碼來源:TestMeshQuadrature.py


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