Lines Matching refs:coords
110 …mpute_Lagrange_Basis_1D_Internal(const PetscInt nverts, const PetscReal *coords, const PetscInt np… in Compute_Lagrange_Basis_1D_Internal() argument
135 const PetscReal *vertices = coords + i * 3; in Compute_Lagrange_Basis_1D_Internal()
164 const PetscReal *vertices = coords + i * 3; in Compute_Lagrange_Basis_1D_Internal()
220 …mpute_Lagrange_Basis_2D_Internal(const PetscInt nverts, const PetscReal *coords, const PetscInt np… in Compute_Lagrange_Basis_2D_Internal() argument
252 const PetscReal *vertices = coords + i * 3; in Compute_Lagrange_Basis_2D_Internal()
281 const PetscReal x2 = coords[2 * 3 + 0], y2 = coords[2 * 3 + 1]; in Compute_Lagrange_Basis_2D_Internal()
287 jacobian[0] = (coords[0 * 3 + 0] - x2); in Compute_Lagrange_Basis_2D_Internal()
288 jacobian[1] = (coords[1 * 3 + 0] - x2); in Compute_Lagrange_Basis_2D_Internal()
289 jacobian[2] = (coords[0 * 3 + 1] - y2); in Compute_Lagrange_Basis_2D_Internal()
290 jacobian[3] = (coords[1 * 3 + 1] - y2); in Compute_Lagrange_Basis_2D_Internal()
307 const PetscReal phipts_x = coords[2 * 3 + 0] + jacobian[0] * r + jacobian[1] * s; in Compute_Lagrange_Basis_2D_Internal()
308 const PetscReal phipts_y = coords[2 * 3 + 1] + jacobian[2] * r + jacobian[3] * s; in Compute_Lagrange_Basis_2D_Internal()
376 …mpute_Lagrange_Basis_3D_Internal(const PetscInt nverts, const PetscReal *coords, const PetscInt np… in Compute_Lagrange_Basis_3D_Internal() argument
419 const PetscReal *vertex = coords + i * 3; in Compute_Lagrange_Basis_3D_Internal()
453 …const PetscReal x0 = coords[/*0 * 3 +*/ 0], y0 = coords[/*0 * 3 +*/ 1], z0 = coords[/*0 * 3 +*/ 2]; in Compute_Lagrange_Basis_3D_Internal()
459 jacobian[0] = coords[1 * 3 + 0] - x0; in Compute_Lagrange_Basis_3D_Internal()
460 jacobian[1] = coords[2 * 3 + 0] - x0; in Compute_Lagrange_Basis_3D_Internal()
461 jacobian[2] = coords[3 * 3 + 0] - x0; in Compute_Lagrange_Basis_3D_Internal()
462 jacobian[3] = coords[1 * 3 + 1] - y0; in Compute_Lagrange_Basis_3D_Internal()
463 jacobian[4] = coords[2 * 3 + 1] - y0; in Compute_Lagrange_Basis_3D_Internal()
464 jacobian[5] = coords[3 * 3 + 1] - y0; in Compute_Lagrange_Basis_3D_Internal()
465 jacobian[6] = coords[1 * 3 + 2] - z0; in Compute_Lagrange_Basis_3D_Internal()
466 jacobian[7] = coords[2 * 3 + 2] - z0; in Compute_Lagrange_Basis_3D_Internal()
467 jacobian[8] = coords[3 * 3 + 2] - z0; in Compute_Lagrange_Basis_3D_Internal()
474 …coords[1 + 2 * 3] * (coords[2 + 1 * 3] - coords[2 + 3 * 3]) - coords[1 + 1 * 3] * (coords[2 + 2 * … in Compute_Lagrange_Basis_3D_Internal()
475 …coords[1 + 2 * 3] * (coords[2 + 0 * 3] - coords[2 + 3 * 3]) - coords[1 + 0 * 3] * (coords[2 + 2 * … in Compute_Lagrange_Basis_3D_Internal()
476 …coords[1 + 1 * 3] * (coords[2 + 0 * 3] - coords[2 + 3 * 3]) - coords[1 + 0 * 3] * (coords[2 + 1 * … in Compute_Lagrange_Basis_3D_Internal()
478 …coords[0 + 1 * 3] * (coords[2 + 2 * 3] - coords[2 + 3 * 3]) - coords[0 + 2 * 3] * (coords[2 + 1 * … in Compute_Lagrange_Basis_3D_Internal()
479 …coords[0 + 0 * 3] * (coords[2 + 2 * 3] - coords[2 + 3 * 3]) - coords[0 + 2 * 3] * (coords[2 + 0 * … in Compute_Lagrange_Basis_3D_Internal()
480 …coords[0 + 0 * 3] * (coords[2 + 1 * 3] - coords[2 + 3 * 3]) - coords[0 + 1 * 3] * (coords[2 + 0 * … in Compute_Lagrange_Basis_3D_Internal()
482 …coords[0 + 1 * 3] * (coords[1 + 3 * 3] - coords[1 + 2 * 3]) - coords[0 + 2 * 3] * (coords[1 + 3 * … in Compute_Lagrange_Basis_3D_Internal()
483 …coords[0 + 0 * 3] * (coords[1 + 3 * 3] - coords[1 + 2 * 3]) + coords[0 + 2 * 3] * (coords[1 + 0 * … in Compute_Lagrange_Basis_3D_Internal()
484 …coords[0 + 0 * 3] * (coords[1 + 3 * 3] - coords[1 + 1 * 3]) + coords[0 + 1 * 3] * (coords[1 + 0 * … in Compute_Lagrange_Basis_3D_Internal()
503 const PetscReal *vertices = coords + i * 3; in Compute_Lagrange_Basis_3D_Internal()