Hi, i need to write this variational problem on its strong formulation.
mesh Th=square(10,10);
fespace Vh(Th,P1);
Vh uh,vh; //
func f=1; //
func g=0; //
problem laplace(uh,vh,solver=GMRES,tgv=1e5) = //
int2d(Th)( dx(uh)dx(vh) + dy(uh)dy(vh) ) //
int1d(Th,1)( uhvh) //
int1d(Th,1)( vh) //
int2d(Th)( fvh ) //
on(2,3,4,uh=g) ; //
laplace; //
plot(uh,ps=“LaplaceP1.eps”,value=true); //
Thanks for help.