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

Loop over the faces of a cell in UDF

Register Blogs Members List Search Today's Posts Mark Forums Read

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   October 15, 2001, 11:57
Default Loop over the faces of a cell in UDF
  #1
Anthony Wachs
Guest
 
Posts: n/a
Hi everybody,

Does someone know how to do a loop over the faces of a cell in an UDF ? or what is the macro to name the face of a given cell ?

I have found the instruction "C_FACE(cell,thread,i)" where I suppose that "i" corresponds to face number i of the cell. Therefore, I tried a thing like :

for (i=0;i less C_NFACES(cell,thread);i++)

{

f0=C_FACE(cell,thread,i);

...

}

(I write "less" otherwise errors occurs in the text, but in the C source, I obviously used the sign, thus don't mind about that, the problem is not here!!)

but it doesn't seem to work.

Any help would be really appreciated.

Thanks in advance

Anthony
  Reply With Quote

Old   October 15, 2001, 15:06
Default Re: Loop over the faces of a cell in UDF
  #2
ravi
Guest
 
Posts: n/a
The integer variables C_NNODES and C_NFACES return the number of nodes or faces, respectively, for a given cell. The integer variable F_NNODES returns the number of nodes associated with a face.

So this is not the appropriate macro for looping over faces in a cell.

Use : begin_f_loop(f,t) end_f_loop(f,t) ---> which loops over faces in a face thread.
  Reply With Quote

Old   October 16, 2001, 03:04
Default Re: Loop over the faces of a cell in UDF
  #3
Anthony Wachs
Guest
 
Posts: n/a
Hi Ravi,

Thank you for your contribution.

Unfortunetaly, your answer does not correspond to what I would like to do. I know very well the command : begin_f_loop(f,t) end_f_loop(f,t), which as you mentioned as well, is useful for a loop over faces in a FACE THREAD. But I am concerned with loop over faces of a CELL, not of a thread : this is completely different.

I have been using "begin_f_loop(f,t) end_f_loop(f,t)" efficiently for a long time in simpler situations, when I would like to do a loop over faces of a face thread.

If you have any other suggestion concerning how to write a "LOOP OVER FACES OF A CELL", thank you in advance

Anthony
  Reply With Quote

Old   October 16, 2001, 05:58
Default Re: Loop over the faces of a cell in UDF
  #4
Greg Perkins
Guest
 
Posts: n/a
Ok here's how to do it:

int numbf; cell_t cf; Thread *tf,*f_thread; face_t face;

/* cf,tf is cell & cell thread */

c_face_loop(cf,tf,numbf) {

face = C_FACE(cf,tf,numbf);

f_thread = C_FACE_THREAD(cf,tf,numbf);

/* do what you like with face numbf with

face & f_thread */

/* -- eg temp = F_T(face,thread); */ }

Greg

  Reply With Quote

Old   October 16, 2001, 10:55
Default Re: Loop over the faces of a cell in UDF
  #5
Anthony Wachs
Guest
 
Posts: n/a
Thanks Greg !!

Anthony
  Reply With Quote

Old   September 20, 2015, 07:22
Default
  #6
Member
 
Eduardo Tola
Join Date: Aug 2015
Location: Madrid/Haifa
Posts: 50
Rep Power: 10
edu_aero is on a distinguished road
Quote:
Originally Posted by Greg Perkins
;98638
Ok here's how to do it:

int numbf; cell_t cf; Thread *tf,*f_thread; face_t face;

/* cf,tf is cell & cell thread */

c_face_loop(cf,tf,numbf) {

face = C_FACE(cf,tf,numbf);

f_thread = C_FACE_THREAD(cf,tf,numbf);

/* do what you like with face numbf with

face & f_thread */

/* -- eg temp = F_T(face,thread); */ }

Greg
Hello, to all and thank you for this post because it is exacly what I was looking for:

However, I am struggling to implement the code written here.

I am trying to implement a code able to calculate the mass flow in different planes created by the user, not boundaries.

My idea is integrate through a volumen and then divide for the width of the volumen. The code is created in a way that if the cell is located in the section then a loop through all the faces wants to be done.
Because the mass flow importance for this problem is only the one in the direction Z, I calculate the normal vector of the face an multiply the Z component by the mass flow, for each face.
I am having problems because I need to initialize two times the variables, for the first bucle and for the second bucle.
I would really appreciate to get some help in this problem.
Attached can be found the code.

Code:
#include "udf.h"
#include <math.h>
#define Num_div 5

DEFINE_ADJUST(GetMassFlow,d)
{
face_t f;
Thread *t;
cell_t c;

    int n=0;                 
    int max_div=0;
    int numbf;
    real division=0;        // Width of the division
    real kk0=0;                // Minimum variable for each Division
    real kk1=0;                // Maximum variable for each Division
    real x[ND_ND];
    real NormalVector[ND_ND];
    real Area;
    real SUMflow=0.;

    division=0.09/Num_div;                                // Calculating the division    
    max_div=Num_div+1;    

    for (n = 1; n < max_div; ++n)
    { 
/////////////////////////////////////////////////////////////////////////////
    kk0=(n-1)*division+0.01;                            // Minimum variable for each Division
    kk1=n*division+0.01;                                // Maximum variable for each Division
    SUMflow=0;
        
        thread_loop_c(t, d)                                            // Variable that stores the SUM of Mass Flow is initialized to zero
        {
            C_CENTROID(x,c,t);
            if ((x[2]<kk1) && (x[2]>kk0))    // All the parcels are organized in different sections
            {
                //  L O O P - O V E R - A L L - T H E - F A C E S - O F - A - C E L L 
                /////////////////////////////////////////////////////////////////////////////////////////////////////
                cell_t cf;
                Thread *tf,*f_thread;
                face_t face;
                /* cf,tf is cell & cell thread */
                F_AREA(NormalVector,face,tf);
                Area=  sqrt(NormalVector[0]*NormalVector[0]+NormalVector[1]*NormalVector[1]+NormalVector[2]*NormalVector[2]);
                NormalVector[0]=NormalVector[0]/(Area);
                c_face_loop(cf,tf,numbf)
                {
                face = C_FACE(cf,tf,numbf);
                f_thread = C_FACE_THREAD(cf,tf,numbf);
                /* do what you like with face numbf with
                face & f_thread */
                /* -- eg temp = F_T(face,thread); */ 
                SUMflow+=F_FLUX(face,f_thread)*NormalVector[2];
                }
                ///////////////////////////////////////////////////////////////////////////////////////////////////////
                //  L O O P - O V E R - A L L - T H E - F A C E S - O F - A - C E L L 

            }
        }


    Message ("%f\t",SUMflow/division);
    }
    Message ("\n");
}
}
I have already created a code that integrate and get the mass flow of liquid droplets using the DPM model. The idea is using both together as a convengence criteria.

Thank you very much
__________________
Having fun with CFD =)
edu_aero is offline   Reply With Quote

Old   April 2, 2024, 10:10
Default
  #7
New Member
 
Diogo Martinho
Join Date: Sep 2022
Posts: 6
Rep Power: 3
diogoloureiromartinho is on a distinguished road
Hey,

I think I will need to implement something as the code you wrote. What I dont get is the meaning of the numbf, how does it change and where does it come from to work as an input.

Kind regards,

Diogo
diogoloureiromartinho is offline   Reply With Quote

Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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
decomposePar -allRegions stru OpenFOAM Pre-Processing 2 August 25, 2015 03:58
foam-extend_3.1 decompose and pyfoam warning shipman OpenFOAM 3 July 24, 2014 08:14
Cluster ID's not contiguous in compute-nodes domain. ??? Shogan FLUENT 1 May 28, 2014 15:03
Journal file error magicalmarshmallow FLUENT 3 April 4, 2014 12:25
[snappyHexMesh] external flow with snappyHexMesh chelvistero OpenFOAM Meshing & Mesh Conversion 11 January 15, 2010 19:43


All times are GMT -4. The time now is 19:17.