Lines Matching refs:deg
314 PetscInt dim, deg, dof; in GLVisCreateFE() local
328 PetscCall(PetscSpaceGetDegree(P, °, NULL)); in GLVisCreateFE()
341 if (isSimplex) deg = PetscMin(deg, 3); /* Permutation not coded for degree higher than 3 */ in GLVisCreateFE()
348 PetscCall(PetscSpaceSetDegree(P, deg, PETSC_DETERMINE)); in GLVisCreateFE()
357 PetscCall(PetscDualSpaceSetOrder(Q, deg)); in GLVisCreateFE()
364 PetscCall(PetscDTStroudConicalQuadrature(dim, 1, deg + 1, -1, +1, &q)); in GLVisCreateFE()
365 PetscCall(PetscDTStroudConicalQuadrature(dim - 1, 1, deg + 1, -1, +1, &fq)); in GLVisCreateFE()
367 PetscCall(PetscDTGaussTensorQuadrature(dim, 1, deg + 1, -1, +1, &q)); in GLVisCreateFE()
368 PetscCall(PetscDTGaussTensorQuadrature(dim - 1, 1, deg + 1, -1, +1, &fq)); in GLVisCreateFE()
372 PetscCall(PetscSNPrintf(name, 32, "L2_T1_%" PetscInt_FMT "D_P%" PetscInt_FMT, dim, deg)); in GLVisCreateFE()
432 …(comm, PETSC_ERR_SUP, "Unhandled degree,dof pair %" PetscInt_FMT ",%" PetscInt_FMT, deg, celldofs); in GLVisCreateFE()