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

please help quickly

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   February 6, 2006, 15:05
Default please help quickly
  #1
siht
Guest
 
Posts: n/a
would u please help if u have idea how to corect the UDF(turbine inlet velocity) which is already at fluent UDF manul to have parabolic velocity inlet in rectangulr geometry (2D)model thnks in dvnce sihu
  Reply With Quote

Old   February 7, 2006, 00:09
Default Re: please help quickly
  #2
Paul_C
Guest
 
Posts: n/a
The UDF available in the UDF manul is already for a rectangular inlet 2D model issnt it?
  Reply With Quote

Old   February 7, 2006, 09:18
Default Re: please help quickly
  #3
siht
Guest
 
Posts: n/a
yes but when i try to do the countor display the arrow is not wright and also when i plotXY the profile is is have the maximum velocity at the wall of the rectangular and the zero value of velocity at the othor wall so please help how to let it the maximum velocity at the center of the geometry and the minimum value of velocity at the walls(parabolic)profile inlet . thanks much in advance
  Reply With Quote

Old   February 7, 2006, 10:42
Default Re: please help quickly
  #4
RoM
Guest
 
Posts: n/a
The udf in manual requires a specific geometry.

- The flow is in direction of the x-axis,

- the centerline of the inlet is at y=0,

- the inlet extends 0.0754m in +/-y .

You can replace the static values with some parameters to adjust the udf. If the center of the inlet is not at y=0 you need an offset in y direction. So if the center of your inlet is at -0.5m the offset would be -0.5 .


#include "udf.h"

#define offset_y 0.0 /* m */
#define extend_y 0.0745 /* m */
#define vmax_x 20.0 /* m/s */

DEFINE_PROFILE(x_velocity,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) = vmax_x - (y-offset_y)*(y-offset_y)/(extend_y*extend_y)*vmax_x;
}
end_f_loop(f,thread)
}



RoM
  Reply With Quote

Old   February 14, 2006, 11:30
Default Re: please help quickly
  #5
siht
Guest
 
Posts: n/a
thank you very much Rom i solve my problem now, and sory for bathoring you i want to know how to model the mixed convection fluied laminar if i have the avarage density and Cp and K and the viscosity thanks alot siht
  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
guary as quickly as possible siht FLUENT 6 February 18, 2006 11:15
Is there any way to quickly export ascii file? HVAC FLUENT 0 December 29, 2005 20:24
P-Mass residual convergers very quickly M CFX 2 October 18, 2005 23:56
How to put quickly a velocity profile in a table? Stephane bone Siemens 5 March 8, 2005 10:45
Reference Pressure-Need help quickly Ben Siemens 2 July 23, 2004 09:24


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