pde for Allen-Cahn, 'text' syntax, unused, just a template
0001 function [f,c,a,b]=acft(p,u,lam) 0002 % pde for Allen-Cahn, 'text' syntax, unused, just a template 0003 lam=mat2str(lam); f=char([lam '*u+u.^3-u.^5']); c=0.2; a=0; b=0; 0004 [c,a,f]=pdetxpd(p.points,p.tria,u,c,a,f);