|
[Sponsors] |
Udf for a fully developed velocity profile atinlet |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
May 15, 2006, 14:55 |
Udf for a fully developed velocity profile atinlet
|
#1 |
Guest
Posts: n/a
|
I need to specify a boundary condition at the inlet region of a square duct. At the inlet i want to specify a fully developed velocity profile. I know i need to use a UDF. The fluent manual gives examples of a fully developed velocity profile at the inlet for a 2d example but not 3d. Has anybody ever done this. would you be willing to send me your c code if you have?
|
|
May 16, 2006, 05:10 |
Re: Udf for a fully developed velocity profile ati
|
#2 |
Guest
Posts: n/a
|
Hi, meppen, I have met a question, it seems that you could help me.I don't know where can I find an example of a fully developed velocity profile at the inlet for a 2d example using UDF.Thanks in advance. sincerely, houston
|
|
May 26, 2006, 15:06 |
Re: Udf for a fully developed velocity profile ati
|
#3 |
Guest
Posts: n/a
|
Philip,
click the following link: http://www.cfd-online.com/Search/cgi...cfd-online.com%2FForum%2Ffluent;exclude=;config=htdig;method=and ;sort=score;words=velocity%20profile;page=1 and then read the post titled as: Re: problem in 3d parabolic velocity profile**** You will get some ideas about the C code for 3D. By the way, could you send me the c code for 2D fully developed velocity profile? |
|
November 7, 2012, 05:47 |
Re: Udf for a fully developed velocity profile ati
|
#4 | |
New Member
Ayoub
Join Date: Nov 2012
Posts: 9
Rep Power: 14 |
Quote:
|
||
November 7, 2012, 07:33 |
|
#5 |
Member
|
Example of a parabolic velocity profile in 2D:
************************************ #include "udf.h" 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) = 20. - y*y/(.0745*.0745)*20.; } end_f_loop(f,thread) } ********************************************* Ref. : FLUENT UDF manual. |
|
November 7, 2012, 10:49 |
thernall fully developed
|
#6 |
New Member
Ayoub
Join Date: Nov 2012
Posts: 9
Rep Power: 14 |
thank you, but is it suitable to reach thermal fully developed?if not what is your suggestion?
|
|
November 7, 2012, 15:30 |
|
#7 |
Member
|
I'm not exactly sure about the thermal boundary layer, but since the parabolic profile is suitable for the laminar flow boundary layer (for Re lower than 1000), I suppose it is correct to use it in a numerical procedure.
|
|
October 8, 2015, 10:52 |
|
#8 | ||
Member
Join Date: May 2012
Posts: 30
Rep Power: 14 |
Quote:
Here are values; Quote:
Last edited by CaptainCombo; October 8, 2015 at 14:16. Reason: Adding information |
|||
October 8, 2015, 16:17 |
|
#9 | |
Senior Member
Join Date: Mar 2015
Posts: 892
Rep Power: 18 |
Quote:
|
||
October 12, 2015, 05:17 |
|
#10 |
Member
Join Date: May 2012
Posts: 30
Rep Power: 14 |
Results after one iteration;
(title "Velocity Magnitude") (labels "Position" "Velocity Magnitude") ((xy/key/label "inlet") 5.73798 0 4.78165 4.78165 3.82532 3.82532 2.86899 2.86899 1.91266 1.91266 0.95633 0.95633 0 0 ) It requires at least one iteration to update. |
|
November 3, 2015, 16:56 |
udf
|
#11 |
New Member
abdi mohamed
Join Date: Oct 2015
Location: algeria
Posts: 1
Rep Power: 0 |
I*need UDF velocity profile fully developed turbulent flow for cylinder 3d please.
|
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
UDF error - parabolic velocity profile - 3D turbine | Zaqie | Fluent UDF and Scheme Programming | 9 | June 25, 2016 20:08 |
Fully developed 3d velocity profile: Square inlet! | Taru | FLUENT | 6 | September 14, 2015 09:38 |
3D UDF Paraboilc Velocity Profile with max velocity | johnGo | Fluent UDF and Scheme Programming | 1 | January 4, 2011 22:45 |
udf for velocity profile in a geometry having two inlets | shubham208011 | Fluent UDF and Scheme Programming | 0 | April 6, 2009 16:13 |
UDF for square wave velocity profile..pls help | Frederik | FLUENT | 0 | May 8, 2006 07:48 |