|
[Sponsors] |
![]() |
![]() |
#1 |
Guest
Posts: n/a
|
Hi Is it possible to give parabolic unsteady velocity inlet with the help of UDF. I tried UDf in given in the documentation it works but when i incorporate space variable x in the unsteady UDF it does not work. Any help Regards Rashad
|
|
![]() |
![]() |
![]() |
#2 |
Guest
Posts: n/a
|
Just substitute your velocity components to these ones
/************************************************** ******************** UDF for specifying a transient velocity profile boundary condition ************************************************** ********************/ #include "udf.h" DEFINE_PROFILE(x_velocity, t, i) { real x[ND_ND]; real x0, y0, time; face_t f; time = CURRENT_TIME; begin_f_loop(f, t) { F_CENTROID(x,f,t); x0 = x[0]; y0 = x[1]; F_PROFILE(f, t, i) = -cos(x0)*sin(y0)*exp(-2.0*time); } end_f_loop(f, t) } DEFINE_PROFILE(y_velocity, t, i) { real x[ND_ND]; real x0, y0, time; face_t f; time = CURRENT_TIME; begin_f_loop(f, t) { F_CENTROID(x,f,t); x0 = x[0]; y0 = x[1]; F_PROFILE(f, t, i) = cos(y0)*sin(x0)*exp(-2.0*time); } end_f_loop(f, t) } |
|
![]() |
![]() |
![]() |
#3 |
Guest
Posts: n/a
|
Thankyou Dear Paolo Lampitella Rashad
|
|
![]() |
![]() |
![]() |
#4 |
New Member
ismail demirkıran
Join Date: Jul 2017
Posts: 4
Rep Power: 8 ![]() |
thanks guys,
I have a similiar problem with transient parabolic velocity proflie but i need 3D version. -How can i modify this code? -Is there a reference paper or definition for given equation above? Regards, ismail |
|
![]() |
![]() |
![]() |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
How to make a UDF to have a velocity profile in a square channel | Gigis | Fluent UDF and Scheme Programming | 8 | January 13, 2013 22:20 |
UDF for a Unsteady velocity change | Paul | FLUENT | 8 | August 29, 2011 02:19 |
Parabolic Velocity profile in a channel | mohsen cheraghi | OpenFOAM Running, Solving & CFD | 3 | April 13, 2011 04:21 |
UDF for 3D velocity profile | pichai | FLUENT | 5 | October 5, 2010 07:10 |
UDF for Velocity profile in 3D rectancular duct | Emad | FLUENT | 0 | January 21, 2009 03:11 |