|
[Sponsors] |
July 1, 2010, 09:01 |
looping over face threads in domain
|
#1 |
New Member
Marek
Join Date: Jul 2010
Posts: 3
Rep Power: 16 |
Dear Users
I have a problem with my udf. Could you help my to fix it? /************************************************** ***** faces_1 01.07.2010 ************************************************** *****/ #include "udf.h" DEFINE_ADJUST(radiation_adjust, domain) { real x[ND_ND]; Thread *f_thread; FILE *fout_face; face_t f; fout_face = fopen("data1.out", "w"); { thread_loop_f(f_thread, domain)/* loops over all face threads in a domain*/ { Message("The file was created: %d\n", fout_face); begin_f_loop(f, f_thread) /* loops over faces in a face thread */ { F_CENTROID(x,f,f_thread); fprintf(fout_face, "%g %g %g %g\n", x[0], x[1], x[2], F_T(f, f_thread)); } end_f_loop(f, f_thread) } fclose(fout_face); /* close the file pointed to by fout */ Message("The file was created: %d\n", fout_face); } } |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
[Netgen] Import netgen mesh to OpenFOAM | hsieh | OpenFOAM Meshing & Mesh Conversion | 32 | September 13, 2011 06:50 |
[blockMesh] BlockMeshmergePatchPairs | hjasak | OpenFOAM Meshing & Mesh Conversion | 11 | August 15, 2008 08:36 |
fluent add additional zones for the mesh file | SSL | FLUENT | 2 | January 26, 2008 12:55 |
[blockMesh] Axisymmetrical mesh | Rasmus Gjesing (Gjesing) | OpenFOAM Meshing & Mesh Conversion | 10 | April 2, 2007 15:00 |
[Commercial meshers] Trimmed cell and embedded refinement mesh conversion issues | michele | OpenFOAM Meshing & Mesh Conversion | 2 | July 15, 2005 05:15 |