:py:mod:`symfem.elements.lagrange` ================================== .. py:module:: symfem.elements.lagrange .. autoapi-nested-parse:: Lagrange elements on simplices. Module Contents --------------- Classes ~~~~~~~ .. autoapisummary:: symfem.elements.lagrange.Lagrange symfem.elements.lagrange.VectorLagrange symfem.elements.lagrange.MatrixLagrange symfem.elements.lagrange.SymmetricMatrixLagrange .. py:class:: Lagrange(reference: symfem.references.Reference, order: int, variant: str = 'equispaced') Bases: :py:obj:`symfem.finite_element.CiarletElement` Lagrange finite element. .. py:attribute:: names :value: ['Lagrange', 'P'] .. py:attribute:: references :value: ['interval', 'triangle', 'tetrahedron'] .. py:attribute:: min_order :value: 0 .. py:attribute:: continuity :value: 'C0' .. py:attribute:: last_updated :value: '2023.09' .. py:method:: init_kwargs() -> Dict[str, Any] Return the kwargs used to create this element. :returns: Keyword argument dictionary .. py:class:: VectorLagrange(reference: symfem.references.Reference, order: int, variant: str = 'equispaced') Bases: :py:obj:`symfem.finite_element.CiarletElement` Vector Lagrange finite element. .. py:attribute:: names :value: ['vector Lagrange', 'vP'] .. py:attribute:: references :value: ['interval', 'triangle', 'tetrahedron'] .. py:attribute:: min_order :value: 0 .. py:attribute:: continuity :value: 'C0' .. py:attribute:: last_updated :value: '2023.09' .. py:method:: init_kwargs() -> Dict[str, Any] Return the kwargs used to create this element. :returns: Keyword argument dictionary .. py:class:: MatrixLagrange(reference: symfem.references.Reference, order: int, variant: str = 'equispaced') Bases: :py:obj:`symfem.finite_element.CiarletElement` Matrix Lagrange finite element. .. py:attribute:: names :value: ['matrix Lagrange'] .. py:attribute:: references :value: ['triangle', 'tetrahedron'] .. py:attribute:: min_order :value: 0 .. py:attribute:: continuity :value: 'L2' .. py:attribute:: last_updated :value: '2023.09' .. py:method:: init_kwargs() -> Dict[str, Any] Return the kwargs used to create this element. :returns: Keyword argument dictionary .. py:class:: SymmetricMatrixLagrange(reference: symfem.references.Reference, order: int, variant: str = 'equispaced') Bases: :py:obj:`symfem.finite_element.CiarletElement` Symmetric matrix Lagrange finite element. .. py:attribute:: names :value: ['symmetric matrix Lagrange'] .. py:attribute:: references :value: ['triangle', 'tetrahedron'] .. py:attribute:: min_order :value: 0 .. py:attribute:: continuity :value: 'L2' .. py:attribute:: last_updated :value: '2023.09' .. py:method:: init_kwargs() -> Dict[str, Any] Return the kwargs used to create this element. :returns: Keyword argument dictionary