|
[Sponsors] |
I want to use pressure of 1 face in udf that compiled on other face |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
May 28, 2010, 16:19 |
I want to use pressure of 1 face in udf that compiled on other face
|
#1 |
New Member
iman
Join Date: Oct 2009
Posts: 9
Rep Power: 17 |
dear guys
in my udf, I need to use pressure on the face that this face isnt exist in my udf. for example, i wrote udf and compiled on "Shadow boundary" but i need to use pressure on "Canopy Boundary" at this udf. (i need pressure difference on 2 faces) please help to write this udf. |
|
June 7, 2010, 03:06 |
|
#2 |
New Member
|
Hi I don't know if you already solve this problem but here is my solution (I haven't tried so you would have to play around it ok?)
-- to be inserted in your macro that has access to "Shadow Boundary" -- real FC[2]; face_t f_canopy; int ID = 1; /* Zone ID for "Canopy boundary" this number you can find it Define> Boundary Conditions */ Thread *t_canopy = Lookup_Thread(domain, ID); begin_f_loop(f_canopy, t_canopy) /* loop through "Canopy boundary" */ { F_CENTROID(FC,f,thread); printf("x-coord = %f y-coord = %f", FC[0], FC[1]); } end_f_loop(f,thread) |
|
June 9, 2010, 16:44 |
|
#3 |
New Member
iman
Join Date: Oct 2009
Posts: 9
Rep Power: 17 |
thank you,
your opinion is correct, but i found a new way for solving my problem, i have been use THREAD_SHADOW because i want the pressure on shadow. ts=TREAD_SHADOW(tf); |
|
June 10, 2010, 13:55 |
|
#4 |
Member
alliche redha
Join Date: Jun 2010
Posts: 53
Rep Power: 16 |
||
Tags |
udf |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
"Pressure Inlet" Boundary Setup | Wijaya | FLUENT | 15 | May 18, 2016 11:08 |
Why udf can not be compiled in my pc? | Xinqiang | FLUENT | 0 | June 10, 2009 15:32 |
UDF to monitor minimum pressure on the wall | Arvind Jayaprakash | FLUENT | 0 | September 20, 2007 12:53 |
Hydrostatic pressure in 2-phase flow modeling (long) | DS & HB | Main CFD Forum | 0 | January 8, 2000 16:00 |
UDF in Fluent to Match Mass Flow at Pressure Outlet | Jonas Larsson | Main CFD Forum | 1 | April 29, 1999 11:44 |