Hi,
I have a question regrading multi-physics problem implementation.
I am developing a program that will solve the steady-state thermal conduction (laplace) first and then the allen-Cahn equation.
both of the problems are solved on the same mesh, however due to the nature of my specific implementation they solved separately. To solve the allen-Cahn equation, I need to evaluate temperature dependent functions at each node in the domain.
Hence, they only share the same triangulation, but everything else is separate.
My question is, how to use the solution vector from the thermal conduction (the temperature) in the assembly of the allen-cahn equation ?
how to access the temperature at these nodes and make sure that they are synchronized ?
thank you