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

URGENT!!! F_UDSI at symmetry boundary

Register Blogs Community New Posts Updated Threads Search

 
 
LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
Old   March 4, 2010, 15:41
Exclamation URGENT!!! F_UDSI at symmetry boundary
  #1
Member
 
Join Date: Mar 2009
Location: Istanbul, Turkiye
Posts: 47
Rep Power: 17
gemini is on a distinguished road
Hi,

In FLUENT udf manual following statement is given,

Quote:
Note that F_UDSI is available for wall and flow boundary faces, only. If a UDS attempts to access any other face zone, then an error will result.


Then, I tried to test this in a simple 3D uds diffusion problem where the domain has symmetry boundary condition. After convergence, I applied following function to printout the face values of uds at all boundaries:

Code:
face_t f;
Thread *tf;
thread_loop_f(tf, domain)/* loops over all face threads in a domain*/
  {
   begin_f_loop(f, tf)    /* loops over faces in a face thread  */
   {
     if (BOUNDARY_FACE_THREAD_P(tf)) 
       {
           Message("face id = %d, UDS0 value = %12.5e",f, F_UDSI(f, tf, 0));  
       }
   }                         
   end_f_loop(f, f_thread)
}
However, execution of this script resulted in an error. So, is there any way to prevent the use of F_UDSI at symmetry bc's? or How can I extract the type of bc of a particular boundary face?

thanks



[/COLOR]

Last edited by gemini; March 5, 2010 at 02:34.
gemini is offline   Reply With Quote

 


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
Implementation of boundary conditions for FVM Tom Main CFD Forum 7 August 26, 2014 05:58
Symmetry and boundary conditions eric FLUENT 3 August 30, 2012 09:09
inlet velocity boundary condition murali CFX 5 August 3, 2012 08:56
Normal velocity at the symmetry boundary Seventy FLUENT 1 October 26, 2009 06:52
Boundary conditions? Tom Main CFD Forum 0 November 5, 2002 01:54


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