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

Initializing trailing vortices in fluent

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   December 25, 2013, 19:32
Default Initializing trailing vortices in fluent
  #1
New Member
 
Zakir Mirza
Join Date: Dec 2013
Posts: 9
Rep Power: 12
zakir is on a distinguished road
Hi there,

For my 3rd year project I have to simulate trailing vortices upstream of a 3D wing with a flap. These trailing vortices are from another airplane that has just taken off. The whole idea is to capture the effect of these wake vortices on this wing in take-off configuration. Does anyone know how I could go about setting up these vortices in fluent? I have been told that I can set them as an initial condition in fluent and that I would need to input a user defined function for them. Would this UDF consist of the velocity field of the vortices? Any help with this would be much appreciated .

Zakir
zakir is offline   Reply With Quote

Old   February 16, 2014, 07:54
Default
  #2
New Member
 
Zakir Mirza
Join Date: Dec 2013
Posts: 9
Rep Power: 12
zakir is on a distinguished road
Given that the above comment was quite vague, I will give more clarity here. I am trying to set an initial condition for a point vortex upstream of my wing. The code I have used is shown below. I have no idea whether this is correct or not so if someone could give any help it would be much appreciated:

/************************************************** *********************
vprofile.c
UDF for specifying point vortex
************************************************** **********************/

#include "udf.h"

#define gamma -779.17 /*define vortex strength*/
#define r 0.5 /*define cross-sectional size of vortex*/
#define uinf 78.23 /*define free-stream velocity*/
#define alpha 15 /*define angle of attack*/
#define pi 3.14159265358979323846 /*The number pi*/

DEFINE_PROFILE(inlet_x_velocity, thread, position)
{
real x[ND_ND]; /* this will hold the position vector */
real y;
face_t f;

begin_f_loop(f, thread)
{
F_CENTROID(x,f,thread);
y = x[1];
F_PROFILE(f, thread, position) = uinf;
}
end_f_loop(f, thread)
}

DEFINE_PROFILE(inlet_y_velocity, thread, position)
{
real x[ND_ND]; /* this will hold the position vector */
real y;
face_t f;

begin_f_loop(f, thread)
{
F_CENTROID(x,f,thread);
y = x[1];
F_PROFILE(f, thread, position) = -gamma/(0.71*pi*(r/0.5));
}
end_f_loop(f, thread)

}

DEFINE_PROFILE(inlet_z_velocity, thread, position)
{
real x[ND_ND]; /* this will hold the position vector */
real y;
face_t f;

begin_f_loop(f, thread)
{
F_CENTROID(x,f,thread);
y = x[1];
F_PROFILE(f, thread, position) = -gamma/(2*pi*(r/0.5));
}
end_f_loop(f, thread)
}
zakir is offline   Reply With Quote

Reply


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
Two questions on Fluent UDF Steven Fluent UDF and Scheme Programming 7 March 23, 2018 03:22
How to open Icem mesh in Ansys Fluent? emmkell FLUENT 27 February 6, 2018 03:34
Error in reading Fluent 13 case file in fluent 12 apurv FLUENT 2 July 12, 2013 07:46
fluent parallel problem in win7 x64 system dunga82 FLUENT 8 April 19, 2012 20:23
Display vortices in Fluent Lindsey FLUENT 0 October 16, 2009 16:03


All times are GMT -4. The time now is 12:25.