Group Abstract Group Abstract

Message Boards Message Boards

Solve analytically a third oder coupled Ode?

Posted 6 years ago

Hi, please anybody tell me how we solve analytical solution of third order coupled ode in Mathematica. I mean I want graphs and table for different value of M,Rd. Can any friend send me technique in Mathematica file? With Homotopy perturbation method or any other analytical technique.

f '''-(2f'^2-5/2 f f "+Mf")=0

(1+Rd)g''+5/2 Pr f g'=0

f(0)=0,f'(0)=1,f(infinity)=0,g(0)=1,g(infinity)=0
POSTED BY: Umair Rashid
2 Replies

Just for a start, you can visualize the solution to the first equation in terms of M,f''[0]:

Manipulate[
 sol = NDSolveValue[{
    f'''[x] - (2 f'[x]^2 - 5/2 f[x] f''[x] + M*f''[x]) == 0,
    f[0] == 0, f'[0] == 1, f''[0] == a},
   f, {x, 0, xmax}];
 Plot[sol[x], {x, 0, xmax}],
 {{M, 1}, 0, 2},
 {{a, -1.049, f''[0]}, -2, 2},
 {xmax, 10, 100}]
POSTED BY: Gianluca Gorni
Anonymous User
Anonymous User
Posted 6 years ago
POSTED BY: Anonymous User
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard