Question: problelm in numerical solution of ode

when i try to solve the equation given below the following problem occured. pleae tell me how can i solve this boundary value problem.

> ode := diff(y(eta), eta, eta, eta)-(diff(y(eta), eta))*(diff(y(eta), eta))+y(eta)*(diff(y(eta), eta, eta)) = 0;
                                                      
     
> bcs1 := y(0) = 0, y(0) = 1, D*y(1) = 0;
               
> sol := dsolve({ode, bcs1}, numeric);


Error, (in dsolve/numeric/bvp/convertsys) too few boundary conditions: expected 4, got 3
>

Please Wait...