Re: [deal.II] Using DataOut when dim != spacedim

2020-09-23 Thread Malhar Tidke
Hello Daniel, It worked, Thank you. I had somehow missed step-38, I will look into it. Again, thank you for your help. Best Regards, Malhar On Tue, Sep 22, 2020 at 7:17 PM Daniel Arndt wrote: > Malhar, > > the template arguments for DataOut are dim and DoFHandlerType where > DoFHandlerType

Re: [deal.II] Using DataOut when dim != spacedim

2020-09-22 Thread Malhar Tidke
Hello Luca, I am sorry, I should have mentioned it in the question, I had tried it earlier, but it leads to argument mismatch because, as Daniel has posted, the second argument is DofHandlerType rather than spacedim. But, thank you for your help. Appreciate it. Best Regards, Malhar On Tue, Sep

Re: [deal.II] Using DataOut when dim != spacedim

2020-09-22 Thread Daniel Arndt
Malhar, the template arguments for DataOut are dim and DoFHandlerType where DoFHandlerType defaults to DoFHandler since you are using a DoFHandler<2, 3> object you need to specify the second template argument explicitly, i.e. DataOut<2, DoFHandler<2,3>> data_out; You could have a look at

Re: [deal.II] Using DataOut when dim != spacedim

2020-09-22 Thread luca.heltai
Dear Malhar, just as you did for the Triangulation and the DoFHandler, also DataOut should be instantiated with <2,3>, i.e., not DataOut<2> … but DataOut<2,3> … Best, Luca. > On 22 Sep 2020, at 7:37, Malhar T. wrote: > > Hello All, > I hope you are doing well ! > > I am working

[deal.II] Using DataOut when dim != spacedim

2020-09-21 Thread Malhar T.
Hello All, I hope you are doing well ! I am working on a surface patch in 3D (dim=2 & spacedim=3 and developed using ChartManifold<2,3> by following code similar to step-53 ) and I would like to output the results into a vtk file. I