[deal.II] Triangulation data serialization Question

2025-02-17 Thread Jerett Cherry
Hello, In my application, I store many copies of a distributed vector which all share the same . The method requires me to load in a few different checkpoint files. (eg. at t=0 and t=1). Since these share the same triangulation, I would like to call triangulation::load() many times, once for e

Re: [deal.II] Triangulation data serialization Question

2025-02-19 Thread Jerett Cherry
triangulation.clear() removes all data. Apparently, load() requires that triangulation already contain a coarse mesh. Therefore clear() cannot work. I'll write a small program that demonstrates the issue today. Would it be to add a line in the implementation of load() which clears the buffer? I

Re: [deal.II] Triangulation data serialization Question

2025-02-28 Thread Jerett Cherry
Bruno, This temporary fix works. I was unable to create a small example to illustrate the problem with the detail I desired, so unfortunately cannot share this. The workflow that resolved this issue is as follows: 1. generate coarse mesh 2. load checkpoint 3. reinitialize and prepare associated