[deal.II] Re: Multi-physics implementation

2020-09-22 Thread Ray Mclaren
Mr. Simon thank you for your response, It was exactly what I was looking for. On Tuesday, September 22, 2020 at 5:01:42 PM UTC+9 simon...@gmail.com wrote: > Hi, > I would do it like this: > > // Setup two DoFHandlers, one for the heat and one for Allen-Cahn > DoFHandler

[deal.II] Re: Multi-physics implementation

2020-09-22 Thread simon...@gmail.com
Hi, I would do it like this: // Setup two DoFHandlers, one for the heat and one for Allen-Cahn DoFHandler heat_dof_handler(triangulation); DoFHandler allen_cahn_dof_handler(triangulation); // Solve for this first Vector heat_solution; // Lots of things in between here... // When