Lines Matching +full:- +full:j2
1 // Copyright (c) 2017-2026, Lawrence Livermore National Security, LLC and other CEED contributors.
2 // All Rights Reserved. See the top-level LICENSE and NOTICE files for details.
4 // SPDX-License-Identifier: BSD-2-Clause
13 // -----------------------------------------------------------------------------
21 // (J1,J2,J3) is given by the cross product of the columns of dxdX_{i,j}
23 // detJb is the magnitude of (J1,J2,J3)
27 // -----------------------------------------------------------------------------
46 // J1, J2, and J3 are given by the cross product of the columns of dxdX in SetupTractionBCs()
47 const CeedScalar J1 = dxdX[1][0] * dxdX[2][1] - dxdX[2][0] * dxdX[1][1]; in SetupTractionBCs()
48 const CeedScalar J2 = dxdX[2][0] * dxdX[0][1] - dxdX[0][0] * dxdX[2][1]; in SetupTractionBCs() local
49 const CeedScalar J3 = dxdX[0][0] * dxdX[1][1] - dxdX[1][0] * dxdX[0][1]; in SetupTractionBCs()
52 // -- Interp-to-Interp q_data in SetupTractionBCs()
53 CeedScalar wdetJb = w[i] * sqrt(J1 * J1 + J2 * J2 + J3 * J3); in SetupTractionBCs()
63 // -----------------------------------------------------------------------------