Hi,
I noticed an issue with the Facet-spaces and hybrid methods iTutorial. When input block 4 executes, an error occurs:
[code]sigma,u,uhat = X.TrialFunction()
tau,v,vhat = X.TestFunction()
a = BilinearForm(X)
a += SymbolicBFI(1/lam * sigmatau + div(sigma)v + div(tau)u)
n = specialcf.normal(mesh.dim)
a += SymbolicBFI(sigmanvhat+taun*uhat, element_boundary=True)
a.Assemble()
f = LinearForm(X)
f += SymbolicLFI(-sourcev)
f += SymbolicLFI(gvhat, BND)
f.Assemble()
[/code]
RuntimeError Traceback (most recent call last)
in ()
11 f += SymbolicLFI(-sourcev)
12 f += SymbolicLFI(gvhat, BND)
—> 13 f.Assemble()
RuntimeError: cannot evaluate facet-fe inside element, add trans simdin Assemble LinearForm
Best,
Dow