On 07. okt. 2010 11:03, Marie Rognes wrote:
On 01. okt. 2010 15:54, Anders Logg wrote:
On Wed, Sep 29, 2010 at 08:31:51PM -0500, Douglas Arnold wrote:
[\snip]
V = FunctionSpace(mesh, "P Lambda", r, k)
and
V = FunctionSpace(mesh, "P- Lambda", r, k)
I have added a blueprint for this:
https://blueprints.launchpad.net/ufl/+spec/exterior-calculus-names/
And assigned it to the appropriate person ;-)
The assignee will fix after we actually support (P Lambda, q, 3, 1)
In order to make this work as desired, we need to change the fourth
argument of python FunctionSpace constructor from:
def __init__(self, mesh, family, degree,
restriction=None):
to (for instance)
def __init__(self, mesh, family, degree, form_degree=None,
restriction=None):
Please shout if you object to such a change.