Searched refs:detJ (Results 1 – 4 of 4) sorted by relevance
| /honee/qfunctions/ |
| H A D | setupgeo.h | 48 CeedScalar detJ, dXdx[3][3]; in Setup() local 49 InvertMappingJacobian_3D(Q, i, J, dXdx, &detJ); in Setup() 50 const CeedScalar wdetJ = w[i] * detJ; in Setup()
|
| H A D | setupgeo_helpers.h | 87 const CeedScalar detJ = Norm3(normal); in NormalVectorFromdxdX_3D() local 88 ScaleN(normal, 1 / detJ, 3); in NormalVectorFromdxdX_3D() 89 if (detJ_ptr) *detJ_ptr = detJ; in NormalVectorFromdxdX_3D()
|
| H A D | utils.h | 185 const CeedScalar detJ = A[0][0] * A[1][1] - A[1][0] * A[0][1]; in MatInv2() local 187 A_inv[0][0] = A[1][1] / detJ; in MatInv2() 188 A_inv[0][1] = -A[0][1] / detJ; in MatInv2() 189 A_inv[1][0] = -A[1][0] / detJ; in MatInv2() 190 A_inv[1][1] = A[0][0] / detJ; in MatInv2() 191 if (detJ_ptr) *detJ_ptr = detJ; in MatInv2() 213 const CeedScalar detJ = A[0][0] * A_inv[0][0] + A[1][0] * A_inv[0][1] + A[2][0] * A_inv[0][2]; in MatInv3() local 214 ScaleN((CeedScalar *)A_inv, 1 / detJ, 9); in MatInv3() 215 if (detJ_ptr) *detJ_ptr = detJ; in MatInv3()
|
| H A D | setupgeo2d.h | 46 CeedScalar dXdx[2][2], detJ; in Setup2d() local 47 InvertMappingJacobian_2D(Q, i, J, dXdx, &detJ); in Setup2d() 48 const CeedScalar wdetJ = w[i] * detJ; in Setup2d()
|