I am solving a set of 4 systems in the same equation_system object. During the 
solving process I end up calling the solve function for each of the system one 
after the other:

system1.solve();
system2.solve();
system3.solve();
system4.solve();

I encounter a problem when I try running this on more than one processor. The 
first system gets solved but the program just stops after that (there is no 
error message but the program stops). Any one of the systems can be solved if 
the others are commented out. Also, each system while being assembled uses the 
values of variables for the other systems and so they are coupled.

How can I overcome this problem? I tried closing the solution vector after 
system.solve() but that did not fix the issue.

Regards
Amal
------------------------------------------------------------------------------
Slashdot TV.  
Video for Nerds.  Stuff that matters.
http://tv.slashdot.org/
_______________________________________________
Libmesh-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/libmesh-users

Reply via email to