Skip to content
Snippets Groups Projects
Commit c2b1c988 authored by Dominic Kempf's avatar Dominic Kempf
Browse files

Fixup the nonlinear test

parent a877b8b0
No related branches found
No related tags found
No related merge requests found
f = Expression("return -2.0*x.size();") cell = "triangle"
g = Expression("return x.two_norm2();", on_intersection=True) x = SpatialCoordinate(cell)
f = -4.
g = x[0]*x[0] + x[1]*x[1]
cell = triangle
V = FiniteElement("DG", cell, 1) V = FiniteElement("DG", cell, 1)
u = TrialFunction(V) u = TrialFunction(V)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment