Evaluating the solution at different points

Suppose I have a square mesh from (0,1) and T is the solution created on the mesh. I need to obtain the numerical value of solution T at many points, given that these points are not the vertices of the mesh. Is it possible to do that?

Best

You can use values = [T(p) for p in points] where points is a list of the points you want to evaluate at.

1 Like

Thanks, @dokken. Have a good day