On Mon, 7 Nov 2011, Matteo Semplice wrote:

> This would be ok with me, but the question is how can I achieve this in
> the DifferentiableSystem framework? Part 3 should be ok using
> FEMSystem::side_postprocess, but how about part 2?

Sorry I don't have more time to make helpful suggestions, but I'd like
to point out a method of last resort with FEMSystem:

FEMSystem::assembly() is virtual.  If need be, you can override it,
then the new method can effectively append to it:

MyFEMSystem::assembly(bool r, bool j)
{
   FEMSystem::assembly(r,j);
   this->do_stuff_after_element_loop();
}
---
Roy

------------------------------------------------------------------------------
RSA(R) Conference 2012
Save $700 by Nov 18
Register now
http://p.sf.net/sfu/rsa-sfdev2dev1
_______________________________________________
Libmesh-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/libmesh-users

Reply via email to