Myo

4 Reputation

2 Badges

16 years, 159 days

MaplePrimes Activity


These are questions asked by Myo

Hello,

I am trying to solve numerically the following equation :

Eq:={diff(u(x,t),t$2)-0.1*diff(u(x,t),x$2)+0.00001*diff(u(x,t),x$4)+0.1*diff(u(x,t),t$3)=0};


Here is my code :

restart;with(plots): with(PDEtools):

Eq:={diff(u(x,t),t$2)-0.1*diff(u(x,t),x$2)+0.00001*diff(u(x,t),x$4)+0.1*diff(u(x,t),t$3)=0};

BC:={u(0,t)=0,u(1,t)=0,D[1](u)(0,t)=0,D[1](u)(1,t)=0};

Page 1 of 1