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

3D UDF - Profile dependant on ground height

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

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   March 9, 2005, 12:23
Default 3D UDF - Profile dependant on ground height
  #1
Nigel Banks
Guest
 
Posts: n/a
Hi there,

I am modelling the flow around a group of buildings situated on undulating ground. My initial model used a flat ground and I sucessfully used the UDF below to model the atmospheric boundary layer velocity inlet conditions (velocity increases with distance above ground).

However, I have now included the local hills and so have different ground levels along the inlet. Is there any way to reference the coordinates of lower edge (which would give me the ground height at that point) in order to get the correct velocity profile???

Any help is very appreciated!!!

Many thanks, Nigel

#include "udf.h"

DEFINE_PROFILE(ABL_profile, thread, index)

{

real x[ND_ND];

real y;

face_t f;

begin_f_loop(f, thread)

{

F_CENTROID(x,f,thread);

y = x[1];

F_PROFILE(f, thread, index) = 1.465*log((y+0.01)/0.01);

}

end_f_loop(f, thread)

}

  Reply With Quote

Old   September 5, 2012, 06:50
Default
  #2
New Member
 
Stefano Capra
Join Date: Mar 2012
Posts: 14
Rep Power: 14
SteveGoat is on a distinguished road
Dear Nigel,
have you solved this issue?
I'm facing the same problem and it would be very useful to know your opinion about it

Many thanks
Stefano
SteveGoat is offline   Reply With Quote

Old   July 14, 2017, 06:51
Default
  #3
Member
 
Fabio Malizia
Join Date: May 2010
Location: Leuven (Belgium)
Posts: 51
Rep Power: 15
Fabio88 is on a distinguished road
Dear Nigel, Dear Stefano,

did you solve this issue?
I should do something similar and I am not sure how to approach the problem.

Some people suggested to use C_WALL_DIST in Fluent UDF. I did not try but from what I read it was not really successful ([UDF] Relative coordinates in logarithmic velocity profile)

the guy of the post found an alternative way "first write out a profile file at the inlet boundary, then obtain a profile file, which contains vectors of x,y,z,cell wall distance and velocity magnitude, then I read the file with excel and replace the velocity magnitude by a function of cell wall distance (which is the logarithmic function for velocity profile). Then i save the altered data and read this back to fluent as profile. Finally, then I used these profiles as boundary conditions for the inlet."

Do you think is possible to do so directly from fluent UDF?

Thanks!
Fabio88 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
please help UDF for velocity profile in y-directio raju Fluent UDF and Scheme Programming 6 April 12, 2019 23:21
Accessing profile data from a UDF ral007 Fluent UDF and Scheme Programming 1 October 14, 2015 09:21
UDF for linear temperature profile across the hemispherical surface tshv247 Fluent UDF and Scheme Programming 1 October 3, 2011 12:44
UDF parallel velocity inlet profile Armengol FLUENT 3 September 30, 2009 15:08
UDF: PROFILE + SOURCE Nuno FLUENT 0 September 1, 2008 15:31


All times are GMT -4. The time now is 19:46.