Searched refs:dual_coeff (Results 1 – 3 of 3) sorted by relevance
/dports/math/libmesh/libmesh-1.6.2/tests/fe/ |
H A D | dual_shape_verification_test.C | 41 const DenseMatrix<Real> & dual_coeff = _fe->get_dual_coeff(); in testEdge2Lagrange() local 43 CPPUNIT_ASSERT_EQUAL(dual_coeff.m(), unsigned(2)); in testEdge2Lagrange() 44 CPPUNIT_ASSERT_EQUAL(dual_coeff.n(), unsigned(2)); in testEdge2Lagrange() 46 LIBMESH_ASSERT_FP_EQUAL(2, dual_coeff(0,0), TOLERANCE*TOLERANCE); in testEdge2Lagrange() 47 LIBMESH_ASSERT_FP_EQUAL(-1, dual_coeff(0,1), TOLERANCE*TOLERANCE); in testEdge2Lagrange() 48 LIBMESH_ASSERT_FP_EQUAL(-1, dual_coeff(1,0), TOLERANCE*TOLERANCE); in testEdge2Lagrange() 49 LIBMESH_ASSERT_FP_EQUAL(2, dual_coeff(1,1), TOLERANCE*TOLERANCE); in testEdge2Lagrange()
|
/dports/math/libmesh/libmesh-1.6.2/include/fe/ |
H A D | fe_base.h | 247 { return dual_coeff; } in get_dual_coeff() 574 mutable DenseMatrix<Real> dual_coeff; variable
|
/dports/math/libmesh/libmesh-1.6.2/src/fe/ |
H A D | fe_base.C | 743 dual_coeff.resize(sz, sz); in compute_dual_shape_coeffs() 765 dual_coeff(row, j)=coeffcol(row); in compute_dual_shape_coeffs() 776 libmesh_assert(dual_coeff.m() == phi.size()); in compute_dual_shape_functions() 777 libmesh_assert(dual_coeff.n() == phi.size()); in compute_dual_shape_functions() 797 dual_phi[j][qp] += dual_coeff(i, j) * phi[i][qp]; in compute_dual_shape_functions() 799 dual_dphi[j][qp] += dual_coeff(i, j) * dphi[i][qp]; in compute_dual_shape_functions() 802 dual_d2phi[j][qp] += dual_coeff(i, j) * d2phi[i][qp]; in compute_dual_shape_functions()
|