You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to deal.II User Group
So I copied what's in the link verbatim to step 8 but it says that I am "trying to use functionality in deal.II that is currently not implemented" I attached the code below. I'll use the default approach for outputting gradients of a vector; is there a dealii step that does this?
> to step 8 but it says that I am "trying to use functionality in deal.II
> that is currently not implemented"
The problem doesn't actually have anything to do with the postprocessor,
but with the fact that you're outputting your data in VTK format (using
data_out.write_vtk(...)). That function does not support tensor output,
either because we didn't implement it or because the VTK file format
doesn't support tensors -- I don't recall. In any case, switch to
write_vtu() instead and everything should work.