Question: 2D Boundary conditions in maple


Please, I need assistance with this problem.

Here is the problem I am trying to solve:

restart:
with(plots):
with(LinearAlgebra):
with(PDEtools):
with(Student):

myPDE1 := D11*diff(w(x,y), x$4) + 2*(D12+2*D66)*diff(w(x,y), y$4) + D22*diff(w(x,y), x$2, y$2) - G*diff(w(x,y), x,y)= 0;

pdsolve(myPDE1);

pdsolve(myPDE1, build);

"Boundary conditions";
"(Note:the domain for the problem is a rectangle)";
bc1 := w(0,y) = 0; # @ x=0 edge;
bc2 := w(a,y) = 0;  # @ x=a edge;
bc3 := w(x,0) = 0; # @ y=0 edge;
bc4 := w(x,b) = 0; # @ y=b edge;
bcx1 := -D11*D[2](w)(0,y) - D12*D[2](w)(0,y) = 0; # @ x=0 edge;
bcx2 := -D11*D[2](w)(a,y) - D12*D[2](w)(a,y) = 0; # @ x=a edge;
bcy1 := -D12*D[2](w)(x,0) - D22*D[2](w)(x,0) = 0; # @ y=0 edge;
bcy2 := -D12*D[2](w)(x,b) - D22*D[2](w)(x,b) = 0; # @ y=b edge;

sol := [myPDE1, bc1, bc2, bc3, bc4, bcx1, bcx2, bcy1, bcy2];

pdsolve(sol);

"Note:
and D11, D12, D22, D66 and G are constant.
The intention is to find the critical value for G"

I need help with how I can handle the boundary conditions for the problem. Thanks a million.

Please Wait...