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

Ansys Fluent 17 UDF Velocity Profile Update.

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   October 14, 2016, 08:48
Unhappy Ansys Fluent 17 UDF Velocity Profile Update.
  #1
New Member
 
Phillip Marlow
Join Date: Oct 2016
Posts: 4
Rep Power: 9
Phil-M is on a distinguished road
Hello,

I have been given a velocity profile UDF made for a previous version of ANSYS, which however does not work in Fluent 17.

Any input on how to update this to work in Fluent 17 would be greatly appreciated.

#include "udf.h"

DEFINE_PROFILE(inlet_parab,thread,equation)
{
float x[3],y; /*face centroid coordinates */
face_t f; /* face identifier*/
float Vz;
float C1 = 1.76E-6;
float C2 = 2E-5;
float C3 = 6E-4;
float C4 = 2.1E-2;
float Const = 1.79;

/* loop on all faces belonging to the current thread */

begin_f_loop(f,thread)
{
F_CENTROID(x,f,thread); /*get the face centroid coordinates*/
y=x[1]; /*get the y coordinate */
Vz = -(C1*y*y*y*y)-(C2*y*y*y)+(C3*y*y)+(C4*y)+ Const; /*equation fit at 1.79 m/s to channel flow */
F_PROFILE(f,thread,equation)=Vz;
}
end_f_loop(f,thread)
}


Kind Regards, Phil.
Phil-M 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
Velocity profile UDf ejpostema Fluent UDF and Scheme Programming 0 August 15, 2016 10:17
Import Velocity Profile from CFX to Fluent Ofcozz FLUENT 1 December 18, 2015 10:47
Drawing a velocity profile as inlet boundary condition in Fluent ANSYS ???? hasanifte FLUENT 2 February 18, 2015 12:44
UDF for velocity profile egge24 Fluent UDF and Scheme Programming 0 April 4, 2012 19:57
Logarithmic velocity profile cfdworker Fluent UDF and Scheme Programming 0 April 23, 2009 19:09


All times are GMT -4. The time now is 23:38.