:orphan: # PetscDualSpaceGetInteriorData Get all quadrature points necessary to compute the interior degrees of freedom from this space, as well as the matrix that computes the degrees of freedom from the quadrature values. Degrees of freedom are interior degrees of freedom if they belong (by `PetscDualSpaceGetSection()`) to interior points in the reference `DMPLEX`: complementary boundary degrees of freedom are marked as constrained in the section returned by `PetscDualSpaceGetSection()`). ## Synopsis ``` #include "petscfe.h" PetscErrorCode PetscDualSpaceGetInteriorData(PetscDualSpace sp, PetscQuadrature *intNodes, Mat *intMat) ``` ## Input Parameter - ***sp -*** The dualspace ## Output Parameters - ***intNodes -*** A `PetscQuadrature` object containing all evaluation points needed to evaluate interior degrees of freedom - ***intMat -*** A matrix that computes dual space values from point values: size [spdim0 x (npoints * nc)], where spdim0 is the size of the constrained layout (`PetscSectionGetConstrainStorageSize()`) of the dual space section, npoints is the number of points in intNodes and nc is `PetscDualSpaceGetNumComponents()`. ## See Also `PetscDualSpace`, `PetscQuadrature`, `Mat`, `PetscDualSpaceCreate()`, `PetscDualSpaceGetDimension()`, `PetscDualSpaceGetNumComponents()`, `PetscQuadratureGetData()` ## Level advanced ## Location src/dm/dt/dualspace/interface/dualspace.c ## Examples src/dm/dt/dualspace/impls/lagrange/tutorials/ex1.c
--- [Edit on GitLab](https://gitlab.com/petsc/petsc/-/edit/release/src/dm/dt/dualspace/interface/dualspace.c) [Index of all DUALSPACE routines](index.md) [Table of Contents for all manual pages](/manualpages/index.md) [Index of all manual pages](/manualpages/singleindex.md)