December 6, 2022 at 12:48 pm
Subscriber
Hello DrAmine, sorry I have one more question. In UDF fluent,Can I do looping in inner of other looping. let's say I write sample code below.
/*....*/
int zone1=1;
int zone2=2;
cell_t c1;
cell_t c2;
Thread *t1=Lookup_Thread(d,zone1);
Thread *t2=Lookup_Thread(d,zone2);
begin_c_loop(c1,t1)
{
...
begin_c_loop(c2,t2)
{
...
}
end_c_loop(c1,tuatas)
}
end_c_loop(c,tjatas)
/*.....*/
is it possible to do that?