Lines Matching refs:p_0
18 …CeedInt num_elem = 6, p_0 = 2, p_1 = 3, q = 4, dim = 2, num_comp_0 = 2, num_comp_1 = 1; in main() local
20 …CeedInt num_dofs_0 = (n_x * (p_0 - 1) + 1) * (n_y * (p_0 - 1) + 1), num_dofs_1 = (n_x … in main()
22 CeedInt ind_u_0[num_elem * p_0 * p_0], ind_u_1[num_elem * p_1 * p_1]; in main()
32 for (CeedInt i = 0; i < n_x * (p_0 - 1) + 1; i++) { in main()
33 for (CeedInt j = 0; j < n_y * (p_0 - 1) + 1; j++) { in main()
34 x_array[i + j * (n_x * (p_0 - 1) + 1) + 0 * num_dofs_0] = (CeedScalar)i / ((p_0 - 1) * n_x); in main()
35 x_array[i + j * (n_x * (p_0 - 1) + 1) + 1 * num_dofs_0] = (CeedScalar)j / ((p_0 - 1) * n_y); in main()
50 offset = col * (p_0 - 1) + row * (n_x * (p_0 - 1) + 1) * (p_0 - 1); in main()
51 for (CeedInt j = 0; j < p_0; j++) { in main()
52 …for (CeedInt k = 0; k < p_0; k++) ind_u_0[p_0 * (p_0 * i + k) + j] = offset + k * (n_x * (p_0 - 1)… in main()
59 …CeedElemRestrictionCreate(ceed, num_elem, p_0 * p_0, dim, num_dofs_0, dim * num_dofs_0, CEED_MEM_H… in main()
61 …CeedElemRestrictionCreate(ceed, num_elem, p_0 * p_0, num_comp_0, num_dofs_0, num_comp_0 * num_dofs… in main()
74 CeedBasisCreateTensorH1Lagrange(ceed, dim, dim, p_0, q, CEED_GAUSS, &basis_x); in main()
75 CeedBasisCreateTensorH1Lagrange(ceed, dim, num_comp_0, p_0, q, CEED_GAUSS, &basis_u_0); in main()