Hi guys,
I’m trying to solve this ODE
u''=6x
u(0)=0
with following script
/*
u''=6x
u(0)=0
*/
border b(i=0,1) {
x=i;
y=0;
}
meshL Sh=buildmeshL(b(50));
fespace Vh(Sh,P1);
Vh u,v;
func f = 6*x;
func real ue(int i) {
if(i==0)
return 0;
return x;
}
int i=0;
func ue2 = ue(i++);
solve p(u,v,solver=CG)=int1d(Sh)(dx(u)*dx(v))-int1d(Sh)(f*v)+on(0,1,2,u=ue2);
plot(u,wait=true,value=true,fill=true);
for(int i=0;i<u[].n;i++) {
cout << u[][i] << "\n";
}
I konw its analytic solution is x^3, but when I plot the numeric solution, I found they does not match. What’s wrong with my script? many thanks!