Lines Matching refs:isSimplex
1398 static PetscErrorCode GmshCreateFE(MPI_Comm comm, const char prefix[], PetscBool isSimplex, PetscBo… in GmshCreateFE() argument
1404 PetscBool isTensor = isSimplex ? PETSC_FALSE : PETSC_TRUE; in GmshCreateFE()
1431 …PetscCall(DMPlexCreateReferenceCell(PETSC_COMM_SELF, DMPolytopeTypeSimpleShape(dim, isSimplex), &K… in GmshCreateFE()
1441 if (isSimplex) { in GmshCreateFE()
1468 PetscCall(PetscSNPrintf(name, sizeof(name), "%s%" PetscInt_FMT, isSimplex ? "P" : "Q", k)); in GmshCreateFE()
1586 PetscBool isSimplex = PETSC_FALSE, isHybrid = PETSC_FALSE, hasTetra = PETSC_FALSE; in DMPlexCreateGmsh() local
1720 isSimplex = (ptA == GMSH_QUA || ptA == GMSH_HEX) ? PETSC_FALSE : PETSC_TRUE; in DMPlexCreateGmsh()
1734 buf[3] = isSimplex; in DMPlexCreateGmsh()
1743 isSimplex = buf[3] ? PETSC_TRUE : PETSC_FALSE; in DMPlexCreateGmsh()
1976 …if (isSimplex) continuity = PETSC_FALSE; /* XXX FIXME Requires DMPlexSetClosurePermutationLexicogr… in DMPlexCreateGmsh()
1978 PetscCall(GmshCreateFE(comm, NULL, isSimplex, continuity, nodeType, dim, coordDim, order, &fe)); in DMPlexCreateGmsh()
2180 …if (isSimplex) continuity = PETSC_FALSE; /* XXX FIXME Requires DMPlexSetClosurePermutationLexicogr… in DMPlexCreateGmsh()
2181 … PetscCall(GmshCreateFE(comm, prefix, isSimplex, continuity, nodeType, dim, coordDim, order, &fe)); in DMPlexCreateGmsh()