accmds command templates for AC; run cell-by-cell;
acdemo demo script for Allen-Cahn equation with Dirchlet BC over rectangle
SOURCE CODE
0001 function [c,fu,flam,b]=acjacmu(p,u,lam)
0002 % jacobian for AC with cont in mu
0003 u=pdeintrp(p.points,p.tria,u); c=lam;
0004 fu=p.up1+3*u.^2-5*u.^4; flam=0; b=0;