manysik07

5 Reputation

One Badge

7 years, 110 days

MaplePrimes Activity


These are questions asked by manysik07

I'm absolutely new in maple, but I need to solve PDE and I don't understand why maple do not solve it

restart; with(PDEtools);
U := diff_table(u(x, t));

pde[1] := U[t, t] = U[x, x]+5*sin(3*x);

bc[1] := eval(U[], x = 0) = 0; bc[2] := eval(U[], x = Pi) = 0;
ic[1] := eval(U[], t = 0) = 0; ic[2] := eval(D[2]*U[], t = 0) = 1;

sys[1] := [pde[1], bc[1], bc[2], ic[1], ic[2]];
pdsolve(sys[1]);

 

Error: Error, (in PDEtools:-Library:-NormalizeBoundaryConditions) unable to isolate the functions {u(0, t), u(Pi, t), u(x, 0)} in the given boundary conditions {D[2]*u(x, 0) = 1, u(0, t) = 0, u(Pi, t) = 0, u(x, 0) = 0}

 

If I solve it  with only boundary conditions or without any conditions, maple gives me an answer. 

Please, help me to understand, how to solve this pde system with boundary and initials conditions. This is my firs use of maple so I hardly understand how to write code correctly.

Page 1 of 1