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

Parabolic Profile of velocity

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   September 18, 2012, 07:49
Default Parabolic Profile of velocity
  #1
New Member
 
Roberto
Join Date: Oct 2011
Location: Italy
Posts: 17
Rep Power: 14
Robbb is on a distinguished road
How can I introduce a parabolic profile of velocity at the entrance of a straight tube?
Robbb is offline   Reply With Quote

Old   September 18, 2012, 08:44
Default
  #2
Retired Super Moderator
 
Bruno Santos
Join Date: Mar 2009
Location: Lisbon, Portugal
Posts: 10,975
Blog Entries: 45
Rep Power: 128
wyldckat is a name known to allwyldckat is a name known to allwyldckat is a name known to allwyldckat is a name known to allwyldckat is a name known to allwyldckat is a name known to all
Greetings Roberto,

Since you're question is so generic, here's a generic answer: http://www.google.com/imghp?q=parabolic+profile

But seriously, what's the context? Is it:
  1. Purely in the mathematical sense?
  2. Purely in the mathematical sense, but in a CFD context/terminology?
  3. In a mathematical software, such as MATLAB or Mathematica?
  4. In a particular CFD software?
  5. In a CAD software?
  6. In a real life laboratory experiment?
Best regards,
Bruno

PPS: I've moved this thread to the sub-forum dedicated to FLUENT, given the response on the next post
__________________

Last edited by wyldckat; September 19, 2012 at 16:54. Reason: see "PPS"
wyldckat is offline   Reply With Quote

Old   September 19, 2012, 06:27
Default
  #3
New Member
 
Roberto
Join Date: Oct 2011
Location: Italy
Posts: 17
Rep Power: 14
Robbb is on a distinguished road
Bruno, you've got a good sense of humor . Besides that I'm talking about Fluent 14.0. I need a boundary condition that allows me to introduce a completely developped parabolic profile of velocity of a fluid entering a straight tube (3D). I can either create a very long tube, or create this profile in some way, but I don't know how.
Robbb is offline   Reply With Quote

Old   September 20, 2012, 07:02
Default
  #4
New Member
 
rayolau
Join Date: Aug 2012
Posts: 23
Rep Power: 13
rayolau is on a distinguished road
Hi, I am working in similar 3D case. At the moment, my macro is this:

____________________________________
#include "udf.h"
#define S 0.0016
DEFINE_PROFILE(inlet_x_velocity, thread, index)
{
real x [ND,ND];
real y;
real z;
face_t,f;
begin_f_loop(f,thread)
{
F_CENTROID(x,f,thread)
y=x[1]
z=x[2]
if (y>=S)
F_PROFILE(f,thread,index)=0.55*double log (double (y/0.0016))
}
end_f_loop(f,thread)
}
_________________________________
But on compiling my UDF I get the error. Any ideas will be appreciated
Thanks!
rayolau is offline   Reply With Quote

Old   September 20, 2012, 10:00
Default
  #5
Senior Member
 
RodriguezFatz's Avatar
 
Philipp
Join Date: Jun 2011
Location: Germany
Posts: 1,297
Rep Power: 26
RodriguezFatz will become famous soon enough
Quote:
Originally Posted by Robbb View Post
I can either create a very long tube, or create this profile in some way, but I don't know how.
I would go for the long tube.
RodriguezFatz is offline   Reply With Quote

Old   October 1, 2012, 07:03
Default
  #6
New Member
 
Roberto
Join Date: Oct 2011
Location: Italy
Posts: 17
Rep Power: 14
Robbb is on a distinguished road
I'm trying with this one but it tells me Divergence detected in AMG solver


#include "udf.h"
#define YMIN 1.2
#define YMAX 1.55
#define UMEAN -0.04150349
#define B 1./7.
#define DELOVRH 0.5

DEFINE_PROFILE(x_velocity,t,i)
{
real y, del, h, x[ND_ND], ufree; /* variable declarations */
face_t f;
h = YMAX - YMIN;
del = DELOVRH*h;
ufree = UMEAN*(B+1.);
begin_f_loop(f,t)
{
F_CENTROID(x,f,t);
y = x[1];
if (y <= del)
F_PROFILE(f,t,i) = ufree*pow(y/del,B);
else
F_PROFILE(f,t,i) = ufree*pow((h-y)/del,B);
}
end_f_loop(f,t)
}
Robbb is offline   Reply With Quote

Reply

Tags
parabolic, profile


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
UDF for 3d inlet parabolic velocity profile ? shahzeb irfan Fluent UDF and Scheme Programming 10 March 28, 2016 15:00
Simulation with UDF for species mass fraction and velocity profile virgy Fluent UDF and Scheme Programming 8 February 7, 2012 04:30
velocity and temperature profile vickrenz FLUENT 0 August 30, 2009 23:58
problem with velocity inlet profile file Duncan FLUENT 3 November 21, 2005 07:28
Prescribed inflow velocity profile - how to? Alan Main CFD Forum 10 October 28, 2005 12:14


All times are GMT -4. The time now is 08:44.