Hi, 

When totally remeshing my domain use a new mesh and EquationSystems
object. If I do this in a loop I would like to copy my EquationSystems
object. 
I think about something like: 

time loop{

        Mesh new_mesh (2);
        ...//build some mesh
  
        EquationSystems new_equation_systems (new_mesh);
        ... 
        ...
        old_equation_systems = new_equation_systems;
 

}

Well, I know that it doesn't work in this way. Is there a
copy-constructor for EquationSystems (I couldn't find it but maybe i
didn't look carefully enough). 

If not, how would you do it?
I thought I could write it to a file and read it afterwards again, but
this might not be very efficient. 

Thanks, 
Robert


------------------------------------------------------------------------------
Lotusphere 2011
Register now for Lotusphere 2011 and learn how
to connect the dots, take your collaborative environment
to the next level, and enter the era of Social Business.
http://p.sf.net/sfu/lotusphere-d2d
_______________________________________________
Libmesh-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/libmesh-users

Reply via email to