include b grad u into f for error-est and mesh-adapt. f,b as returned from p.f
0001 function fb=bgradu2f(p,f,b,u) 0002 % include b grad u into f for error-est and mesh-adapt. 0003 % f,b as returned from p.f 0004 [ux,uy]=pdegrad(p.points,p.tria,u); 0005 fb=f;n=p.neq; 0006 for i=1:n 0007 for j=1:n 0008 fb(i,:)=fb(i,:)+b(2*n*(j-1)+2*(i-1)+1,:).*ux(j,:)... 0009 +b(2*n*(j-1)+2*(i-1)+2,:).*uy(j,:); 0010 end 0011 end