Home
last modified time | relevance | path

Searched refs:plexA (Results 1 – 3 of 3) sorted by relevance

/petsc/doc/manual/
H A Ddmplex.md409 As `dm` is a `DMPLEX` object representing a mesh, we first give it a *mesh name*, "plexA", and save…
412 PetscObjectSetName((PetscObject)dm, "plexA");
479 group /topologies/plexA
480 group /topologies/plexA/dms
481 group /topologies/plexA/dms/dmA
482 dataset /topologies/plexA/dms/dmA/order
483 group /topologies/plexA/dms/dmA/section
484 dataset /topologies/plexA/dms/dmA/section/atlasDof
485 dataset /topologies/plexA/dms/dmA/section/atlasOff
486 group /topologies/plexA/dms/dmA/vecs
[all …]
/petsc/src/dm/impls/plex/
H A Dplexfem.c2403 DM dmAux = NULL, plexA = NULL; in DMPlexComputeIntegral_Internal() local
2449 PetscCall(DMConvert(dmAux, DMPLEX, &plexA)); in DMPlexComputeIntegral_Internal()
2511 PetscCall(DMPlexVecGetClosure(plexA, sectionAux, locA, c, NULL, &x)); in DMPlexComputeIntegral_Internal()
2513 PetscCall(DMPlexVecRestoreClosure(plexA, sectionAux, locA, c, NULL, &x)); in DMPlexComputeIntegral_Internal()
2576 PetscCall(DMDestroy(&plexA)); in DMPlexComputeIntegral_Internal()
2715 DM plex = NULL, plexA = NULL; in DMPlexComputeBdIntegral_Internal() local
2754 PetscCall(DMConvert(dmAux, DMPLEX, &plexA)); in DMPlexComputeBdIntegral_Internal()
2784 PetscCall(DMGetEnclosurePoint(plexA, dm, encAux, support[0], &subp)); in DMPlexComputeBdIntegral_Internal()
2785 PetscCall(DMPlexVecGetClosure(plexA, sectionAux, locA, subp, NULL, &x)); in DMPlexComputeBdIntegral_Internal()
2787 PetscCall(DMPlexVecRestoreClosure(plexA, sectionAux, locA, subp, NULL, &x)); in DMPlexComputeBdIntegral_Internal()
[all …]
H A Dplexsubmesh.c4494 DM plexA, plexB, sdm; in DMGetEnclosureRelation() local
4508 PetscCall(DMConvert(dmA, DMPLEX, &plexA)); in DMGetEnclosureRelation()
4510 PetscCall(DMPlexGetChart(plexA, &pStartA, &pEndA)); in DMGetEnclosureRelation()
4521 sdm = NpA > NpB ? plexB : plexA; /* The other is the original, enclosing dm */ in DMGetEnclosureRelation()
4531 PetscCall(DMDestroy(&plexA)); in DMGetEnclosureRelation()