Home
last modified time | relevance | path

Searched refs:refCoords (Results 1 – 2 of 2) sorted by relevance

/petsc/src/dm/impls/plex/
H A Dplexgeometry.c3550 …scInt cell, PetscInt numPoints, const PetscReal realCoords[], PetscReal refCoords[], Vec coords, P… in DMPlexCoordinatesToReference_Tensor() argument
3605 PetscCall(PetscArrayzero(refCoords, numPoints * dimR)); in DMPlexCoordinatesToReference_Tensor()
3608 PetscReal *guess = &refCoords[dimR * j]; in DMPlexCoordinatesToReference_Tensor()
3653 …inates_Tensor(DM dm, PetscInt cell, PetscInt numPoints, const PetscReal refCoords[], PetscReal rea… in DMPlexReferenceToCoordinates_Tensor() argument
3704 const PetscReal *guess = &refCoords[dimR * j]; in DMPlexReferenceToCoordinates_Tensor()
3727 …scInt cell, PetscInt numPoints, const PetscReal realCoords[], PetscReal refCoords[], Vec coords, P… in DMPlexCoordinatesToReference_FE() argument
3755 for (i = 0; i < numPoints * dimR; i++) refCoords[i] = 0.; in DMPlexCoordinatesToReference_FE()
3760 PetscReal *guess = &refCoords[j * dimR], error = 0; in DMPlexCoordinatesToReference_FE()
3792 …E(DM dm, PetscFE fe, PetscInt cell, PetscInt numPoints, const PetscReal refCoords[], PetscReal rea… in DMPlexReferenceToCoordinates_FE() argument
3813 PetscCall(PetscSpaceEvaluate(fe->basisSpace, numPoints, refCoords, B, NULL, NULL)); in DMPlexReferenceToCoordinates_FE()
[all …]
H A Dplex.c1889 … refVertices[], const PetscScalar coords[], PetscInt edgeDiv, PetscReal refCoords[], PetscReal edg… in DrawPolygon_Private() argument
1903 refCoords[0] = refVertices[e * 2 + 0]; in DrawPolygon_Private()
1904 refCoords[1] = refVertices[e * 2 + 1]; in DrawPolygon_Private()
1906refCoords[d * 2 + 0] = refCoords[0] + (refVertices[(e + 1) % Nv * 2 + 0] - refCoords[0]) * d / edg… in DrawPolygon_Private()
1907refCoords[d * 2 + 1] = refCoords[1] + (refVertices[(e + 1) % Nv * 2 + 1] - refCoords[1]) * d / edg… in DrawPolygon_Private()
1909 PetscCall(DMPlexReferenceToCoordinates(dm, cell, edgeDiv + 1, refCoords, edgeCoords)); in DrawPolygon_Private()
1918 … PetscInt cell, const PetscScalar coords[], PetscInt edgeDiv, PetscReal refCoords[], PetscReal edg… in DMPlexDrawCellHighOrder() argument
1928 …PetscCall(DrawPolygon_Private(dm, draw, cell, 3, refVertices, coords, edgeDiv, refCoords, edgeCoor… in DMPlexDrawCellHighOrder()
1933 …PetscCall(DrawPolygon_Private(dm, draw, cell, 4, refVertices, coords, edgeDiv, refCoords, edgeCoor… in DMPlexDrawCellHighOrder()
1948 PetscReal *refCoords, *edgeCoords; in DMPlexView_Draw() local
[all …]