Re: [deal.II] Saving PointHistory data to file for restart

2021-07-06 Thread Jean-Paul Pelteret
Hi Dario, To add to what’s already been suggested, you can also look at the TransferableQuadraturePointData and ContinuousQuadratureDataTransfer

Re: [deal.II] Saving PointHistory data to file for restart

2021-07-02 Thread 'Dario Abbondanza' via deal.II User Group
Thank you for your reply. > I don't have a particularly good solution in my head, but if you look at how > programs such as ASPECT do checkpoint/restart, then they use a mechanism such > as p::d::SolutionTransfer to attach data to the triangulation, save/restore, > and unattach. This is

Re: [deal.II] Saving PointHistory data to file for restart

2021-07-01 Thread Wolfgang Bangerth
On 7/1/21 4:48 AM, 'Dario Abbondanza' via deal.II User Group wrote: I'm studying a problem in which I need to store quantities (symmetric tensors and doubles) at quadrature points, and I do that by using a PointHistory class as done in step 44

[deal.II] Saving PointHistory data to file for restart

2021-07-01 Thread 'Dario Abbondanza' via deal.II User Group
Hello all, I'm studying a problem in which I need to store quantities (symmetric tensors and doubles) at quadrature points, and I do that by using a PointHistory class as done in step 44 (https://www.dealii.org/current/doxygen/deal.II/step_44.html#Quadraturepointhistory). The only difference