(* Install BVPh 1.0 for Mathematica 5.2. *) (* For Mathematica 8.0, please replace BVPh1_0.txt by BVPh1_1.txt *) < BVP in a finite domain [0,a] *) (* TypeEQ = 2 -> eigenvalue problem in a finite domain [0,a] *) (* TypeL = 1 -> Chebyshev polynomial as base function *) (* TypeL = 2 -> Hybrid-base approximation *) (* TypeBase = 1 -> sine + polynomial *) (* TypeBase = 2 -> cosine + polynomial *) (* ApproxQ = 0 -> do NOT approximate the function *) (* Appprox = 1 -> approximate the function *) (************************************************************************) TypeEQ = 2; TypeL = 2; TypeBase = 2; ApproxQ = 1; Ntruncated = 20; (************************************************************************) (* Define the governing equation *) (************************************************************************) mu[z_] := 1; f[z_,u_,lambda_] := mu[z]*D[u,{z,2}] + D[mu[z],z]*D[u,z]+lambda*Sin[u]; (***********************************************************************) (* Define Boundary conditions *) (***********************************************************************) zR = Pi; OrderEQ = 2; BC[0,z_,u_,lambda_] := Limit[ u - gamma , z -> 0 ]; BC[1,z_,u_,lambda_] := Limit[D[u,z], z -> 0 ]; BC[2,z_,u_,lambda_] := D[u,z] /. z -> Pi ; (************************************************************************) (* Define initial guess *) (************************************************************************) u[0] = sigma - (sigma - gamma)*Cos[kappa*z]; kappa = 1; sigma = Pi; gamma = 1; (************************************************************************) (* Define output term *) (************************************************************************) output[z_,u_,k_]:= Print["output = ",D[u[k],z] /. z->0//N]; (************************************************************************) (* Defines the auxiliary linear operator *) (************************************************************************) omega[1] = Pi/zR; L[f_] := Module[{temp,numA,numB,i}, If[TypeL == 1, temp[1] = D[f,{z,OrderEQ}], numA = IntegerPart[OrderEQ/2]; numB = OrderEQ - 2* numA//Expand; temp[0] = D[f,{z,numB}]; For[i=1, i<=numA, i++, temp[1] = D[temp[0],{z,2}] + (kappa*omega[i])^2*temp[0]; temp[0] = temp[1]; ]; ]; temp[1]//Expand ]; (* Print input and control parameters *) PrintInput[u[z]]; (* Use the 3rd-order iteration HAM approach *) iter[1,6,3];