Question: Solving for a particular term

I have the following equations currently in a maple program. I would like to solve for POc in terms of miu, uA1 (or uA2 it doesn't matter since they are equal), L, LTJ, h, b, and PT. I tried the solver, which does not work. I also consider the eliminate function, but I played with it too long and have now given up. Any ideas?

uT1:=uB1*h/H;

uB1:=uTJ1*b/h;

uTJ1:=uA1*h/b;

uA1:=uF1*h/h;

uTJ2:=(PTJ1-PTJ2)*b^2/(3*miu*LTJ);

uA2:=(POc-PTJ1)*h^2/(3*miu*L1);

uB2:=(PTJ2-PT)*h^2/(3*miu*(L-L1-LTJ);

eq1:=uTJ1=uTJ2;

eq2:=uA1=uA2;

eq3:=uB1=uB2;

solve({eq1,eq2,eq3},{POc});

 

 

 

Please Wait...