Hello,
Suppose I have calculated my solution all over a mesh, for instance the solution of the Poisson equation demo.
I would like to retain certain particular values of the solution, for instance those on the line x == 0.5 or maybe those in the circle centered in (0.5, 0.5) with radius 0.1.
Here there seems to be a possible solution in Python, which however doesn't translate in C++ since the dofmap()
function doesn't seem to be implemented in C++.
error: ‘class std::shared_ptr<Poisson::Form_a_FunctionSpace_0>’ has no member named ‘dofmap’
auto dofmap = V.dofmap()
^