1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML3.2 EN">
<HTML>
<HEAD> <link rel="canonical" href="http://www.mcs.anl.gov/petsc/petsc-current/docs/manualpages/FE/PetscSpacePolynomialType.html" />
<META NAME="GENERATOR" CONTENT="DOCTEXT">
<TITLE>PetscSpacePolynomialType</TITLE>
</HEAD>
<BODY BGCOLOR="FFFFFF">
<div id="version" align=right><b>petsc-3.14.5 2021-03-03</b></div>
<div id="bugreport" align=right><a href="mailto:petsc-maint@mcs.anl.gov?subject=Typo or Error in Documentation &body=Please describe the typo or error in the documentation: petsc-3.14.5 v3.14.5 docs/manualpages/FE/PetscSpacePolynomialType.html "><small>Report Typos and Errors</small></a></div>
<A NAME="PetscSpacePolynomialType"><H1>PetscSpacePolynomialType</H1></A>
The type of polynomial space
<H3><FONT COLOR="#CC3333">Notes</FONT></H3>
<pre>
PETSCSPACE_POLYNOMIALTYPE_P - This is the normal polynomial space of degree q, P_q or Q_q.
</pre>
<pre>
PETSCSPACE_POLYNOMIALTYPE_PMINUS_HDIV - This is the smallest polynomial space contained in P_q/Q_q such that the divergence is in P_{q-1}/Q_{q-1}. Making this space is straightforward:
</pre>
<pre>
P^-_q = P_{q-1} + P_{(q-1)} x
</pre>
<pre>
where P_{(q-1)} is the space of homogeneous polynomials of degree q-1.
</pre>
<pre>
PETSCSPACE_POLYNOMIALTYPE_PMINUS_HCURL - This is the smallest polynomial space contained in P_q/Q_q such that the curl is in P_{q-1}/Q_{q-1}. Making this space is straightforward:
</pre>
<pre>
P^-_q = P_{q-1} + P_{(q-1)} rot x
</pre>
<pre>
where P_{(q-1)} is the space of homogeneous polynomials of degree q-1, and rot x is (-y, x) in 2D, and (z - y, x - z, y - x) in 3D, being the generators of the rotation algebra.
</pre>
<P>
<P>
<H3><FONT COLOR="#CC3333">See Also</FONT></H3>
<A HREF="../FE/PetscSpace.html#PetscSpace">PetscSpace</A>
<BR><P><B></B><H3><FONT COLOR="#CC3333">Level</FONT></H3>beginner<BR>
<H3><FONT COLOR="#CC3333">Location</FONT></H3>
</B><A HREF="../../../src/dm/dt/fe/../../../../include/petscfetypes.h.html#PetscSpacePolynomialType">src/dm/dt/fe/../../../../include/petscfetypes.h</A>
<BR><A HREF="./index.html">Index of all FE routines</A>
<BR><A HREF="../../index.html">Table of Contents for all manual pages</A>
<BR><A HREF="../singleindex.html">Index of all manual pages</A>
</BODY></HTML>
|