CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > ANSYS > FLUENT

Prandtl number in compressible laminar boundary layer

Register Blogs Members List Search Today's Posts Mark Forums Read

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   September 15, 2014, 12:16
Default Prandtl number in compressible laminar boundary layer
  #1
Senior Member
 
Gonzalo
Join Date: Mar 2011
Location: Argentina
Posts: 122
Rep Power: 16
gfoam is on a distinguished road
Hi everybody:
I want to simulate the compressible flow over a flat plate in FLUENT setting the Prandtl number of the air as 1. So, using the equation \kappa=\mu*Cp/Pr, with
\kappa= Thermal Conductivity
Cp= Specific Heat
\mu= Dynamic Viscosity

In order to do that I'm trying to use a variable \kappa using a UDF:

Code:
#include "udf.h"
DEFINE_PROPERTY(thermal_conductivity,c,t)
{
real k_air;       
real tempt = C_T(c,t);
/*Using the Sutherland's law for viscosity*/
k_air= pow(1.716E-5*(273.11+110.56)/(tempt+110.56)*(tempt/273.11),1.5)*1006.43;
return k_air;
}
but the problem I'm facing is I can't get the solution converged. If I use, \kappa constant I can make my solution converge, but with the approach I'm trying to implement now, don't. Can someone help me? Is the approach I'm using correct? Thanks. Regards
Gonzalo
PS: If someone wants the solution settings I'm using, please ask me for that. But first, I want to know if I'm doing things well with my UDF.

Last edited by gfoam; October 2, 2014 at 09:03.
gfoam is offline   Reply With Quote

Old   September 19, 2014, 12:08
Default
  #2
Senior Member
 
Gonzalo
Join Date: Mar 2011
Location: Argentina
Posts: 122
Rep Power: 16
gfoam is on a distinguished road
I found an error in the thermal conductivity formula, instead of:
Code:
k_air= pow(1.716E-5*(273.11+110.56)/(tempt+110.56)*(tempt/273.11),1.5)*1006.43;
must be:
Code:
k_air= 1.716E-5*(273.11+110.56)/(tempt+110.56)*pow((tempt/273.11),1.5)*1006.43;
I'm looking forward for better results, I'll tell you if I can get them. Regards
Gonzalo
gfoam is offline   Reply With Quote

Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Foam::error::PrintStack almir OpenFOAM Running, Solving & CFD 91 December 21, 2022 04:50
Cluster ID's not contiguous in compute-nodes domain. ??? Shogan FLUENT 1 May 28, 2014 15:03
An error has occurred in cfx5solve: volo87 CFX 5 June 14, 2013 17:44
Unaligned accesses on IA64 andre OpenFOAM 5 June 23, 2008 10:37
Compressible laminar boundary layer Pierre Ricco Main CFD Forum 0 July 21, 2003 13:55


All times are GMT -4. The time now is 03:34.