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

F_UDMI how to postprocess?

Register Blogs Community New Posts Updated Threads Search

 
 
LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
Old   April 10, 2006, 07:01
Default F_UDMI how to postprocess?
  #1
Kasper Skriver
Guest
 
Posts: n/a
Hello everybody

I'm working on a case where I need to store some face values using F_UDMI. I also need to use C_UDMI to store some cell center values.

My questions are:

- does the index in the C_UDMI and F_UDMI need to be different from each other. (will it conflict if I use C_UDMI(c,t,0) and F_UDMI(f,t,0) different from F_UDMI(f,t,1)) ?

- is it correct understood that the F_UDMI only applies for boundary faces?

- and finally, how do I access the F_UDMI values once done with the iterations? How do I postprocess(plot) it?

Regards Kasper Skriver FLS Airtech - Denmark

-------------------------------------------------------- Some initializing code

#include "udf.h"

DEFINE_INIT( initialize, d) {

Thread *t;

cell_t c;

face_t f;

thread_loop_c(t,d)

{

begin_c_loop(c,t)

{

/* INITIALISERER C_UDMI'ER OG C_UDSI'ER */

C_UDMI(c,t,0) = 2; /* Vey FOR CELLER */

//C_UDSI(c,t,0) = 1; /* POTENTIALET */

//C_UDSI(c,t,1) = 1; /* KONCENTRATIONEN C */

}

end_c_loop(c,t)

}

thread_loop_f(t,d)

{

if (BOUNDARY_FACE_THREAD_P(t))

{

begin_f_loop(f,t)

{

/* INITIALISERER F_UDMI'ER */

F_UDMI(f,t,1) = 1; /* Vey FOR FACES */

Message("f_udmi(f,t,1)=%g\n",F_UDMI(f,t,1));

}

end_f_loop(f,t)

}

else

{

}

} }
  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
CFX results postprocess in Tecplot seaharrier CFX 5 April 18, 2019 01:01
SOS, postprocess aspect ratio hedonist FLUENT 3 September 1, 2010 10:02
How to make Disproportional Figures - Postprocess. mrt FLUENT 2 December 29, 2007 08:13
does FIDAP support other postprocess software? ztdep FLUENT 0 April 13, 2006 10:35
about transient postprocess problems limingtiger Siemens 0 September 10, 2005 20:37


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