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

Updating a mesh over a function

0 votes

I got a mesh and a solution of a PDE in FEniCS

omega = #some code for to get a mesh
V = FunctionSpace(omega)
u = TrialFunction(V)
v = TestFunction(V)
a = # ... some bilinear form
L = # ... some linear form
bc = # ... some Dirichlet bound conditions
solve(a = L, u , bc)

In this part we have the PDE solution, but, with this information we would like to redefine the omega mesh for catch better the information of solution u

¿How to redefine the mesh for this goal?

asked Sep 16, 2013 by ljofre FEniCS Novice (720 points)
edited Sep 19, 2013 by ljofre

1 Answer

0 votes
answered Sep 17, 2013 by Peterm FEniCS Novice (160 points)
...