This is a read only copy of the old FEniCS QA forum. Please visit the new QA forum to ask questions

Which element family is 'P' ?

0 votes

I came across this element family recently:

    FiniteElement('P', 'triangle', 1)
    W = VectorFunctionSpace(mesh, 'P', 2)

in this code created by Dr. Logg.

http://www.logg.org/anders/2016/05/11/systems-of-chemical-reactions-in-fenics/

I could not find it in Fenics Manual either:

http://fenicsproject.org/documentation/dolfin/dev/python/programmers-reference/functions/functionspace/FunctionSpace.html

asked May 20, 2016 by Chaitanya_Raj_Goyal FEniCS User (4,150 points)

1 Answer

0 votes
 
Best answer

Have a look here:
http://femtable.org

answered May 21, 2016 by Kent-Andre Mardal FEniCS Expert (14,380 points)
selected May 22, 2016 by Chaitanya_Raj_Goyal

Thank you Dr. Mardal!

...