Third order differential equation numerical approximation

Click For Summary
SUMMARY

The discussion focuses on the numerical approximation of a third-order differential equation system derived from fluid dynamics over a hot plate. The equations involved are F''' + 1/2(F*F'')=0 and G'' + Pr/2(F*G')=0, with specified boundary conditions. The user, Matt, seeks guidance on transforming these equations into a system of first-order ordinary differential equations (ODEs) suitable for numerical integration using the Runge-Kutta 4th order method. Key insights include the need to express the system in terms of first-order equations to apply the numerical method effectively.

PREREQUISITES
  • Understanding of ordinary differential equations (ODEs)
  • Familiarity with numerical methods, specifically the Runge-Kutta 4th order method
  • Knowledge of fluid dynamics principles, particularly the Prandtl number
  • Experience with initial value problems in differential equations
NEXT STEPS
  • Study the transformation of higher-order ODEs to first-order systems
  • Learn about the implementation of the Runge-Kutta 4th order method in numerical analysis
  • Investigate the application of boundary conditions in fluid dynamics problems
  • Explore the significance of the Prandtl number in heat transfer and fluid flow
USEFUL FOR

Students and researchers in applied mathematics, engineers working on fluid dynamics problems, and anyone interested in numerical methods for solving differential equations.

blue2004STi
Messages
21
Reaction score
0

Homework Statement


There is a fluid flowing over a hot plate. We non-dimensionalized the problem from three partial diff eq's to two ode's. I am modeling I have two coupled differential equations that are a system of initial value problems. I am supposed to numerically integrate the two equations to come up with values... I'm then told to simplify this to a larger system of first order ode's. I'm not sure how to do this...


Homework Equations


I'm given F''' +1/2(F*F'')=0 and G''+Pr/2(F*G')=0 where Pr is the prandle number. F(0)=0 F'(0)=0 F'(infinity)=1 G(0)=1 G(infinity)=0


The Attempt at a Solution



I know I'm supposed to guess F'' and G' to get F' and G' to be what I want them to asymptote to. I just am not sure how to get to a place where I can use something like Runge-Kutta 4th order method...

My attempt was U1=F1 U2=F' U1'=U2=F' U2'=U3=F'' U2''=F''' U2''+1/2(U1*U2')=0

then

V1=U1 V2=U2' V2'=U2'' and V2'+1/2(V1*V2)=0

But I don't know if this is right...

Any help is appreciated thanks,

Matt
 
Physics news on Phys.org
blue2004STi said:

Homework Statement


There is a fluid flowing over a hot plate. We non-dimensionalized the problem from three partial diff eq's to two ode's. I am modeling I have two coupled differential equations that are a system of initial value problems. I am supposed to numerically integrate the two equations to come up with values... I'm then told to simplify this to a larger system of first order ode's. I'm not sure how to do this...


Homework Equations


I'm given F''' +1/2(F*F'')=0 and G''+Pr/2(F*G')=0 where Pr is the prandle number. F(0)=0 F'(0)=0 F'(infinity)=1 G(0)=1 G(infinity)=0


The Attempt at a Solution



I know I'm supposed to guess F'' and G' to get F' and G' to be what I want them to asymptote to. I just am not sure how to get to a place where I can use something like Runge-Kutta 4th order method...

My attempt was U1=F1 U2=F' U1'=U2=F' U2'=U3=F'' U2''=F''' U2''+1/2(U1*U2')=0
To use Runge-Kutta, you need a system of first order differential equations. You don't want U2"+ (1/2)(U1*U2')= 0, you want U3'+ (1/2)(U1*U3)= 0
Your 3 equations are
U1'= U2
U2'= U3 and
U3'+ (1/2)(U1*U3)= 0.

then

V1=U1 V2=U2' V2'=U2'' and V2'+1/2(V1*V2)=0
Surely you don't mean this! What happened to G?
Let V1= G, V2= V1'= G', and V3= V2'= G". Then
V1'= V2
V2'= V3 and
V3'= Pr/(2*U2*V2)

But I don't know if this is right...

Any help is appreciated thanks,

Matt
 

Similar threads

  • · Replies 7 ·
Replies
7
Views
2K
Replies
3
Views
2K
Replies
12
Views
2K
  • · Replies 3 ·
Replies
3
Views
2K
Replies
1
Views
2K
  • · Replies 8 ·
Replies
8
Views
1K
  • · Replies 12 ·
Replies
12
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 5 ·
Replies
5
Views
2K