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

UDF Fluent running in Parallel mode

Register Blogs Community New Posts Updated Threads Search

Like Tree1Likes
  • 1 Post By Zbynek

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   August 31, 2016, 05:54
Default UDF Fluent running in Parallel mode
  #1
New Member
 
Abhiroop Bhadra
Join Date: Jul 2016
Posts: 10
Rep Power: 9
Abhiroop is on a distinguished road
Hi, I have a udf in Ansys Fluent and it is suppose to run only once in a timestep.

/************************************************** **********/
static int last_ts = -1;
DEFINE_DPM_LAW(trial1,p,ci)

{
int curr_ts;
curr_ts = N_TIME;
if (last_ts != curr_ts)
{
last_ts = curr_ts;
Message("Called");
}
}

/************************************************** **********/
On running fluent in serial mode it is being called once.But on running in parallel mode, it is called thrice in a timestep. I am new to udfs. Can anyone tell me why is this happening ?
Abhiroop is offline   Reply With Quote

Old   August 31, 2016, 06:04
Default
  #2
D.M
Member
 
Davoud Malekian
Join Date: Jan 2016
Posts: 53
Rep Power: 10
D.M is on a distinguished road
Hello,
How many processors you have allocated to your calculation? probably 3?
actually parallel mode divide your domain into several subdomains (for parallel calculation as far as i know!! check it urself for making sure), in your case your domain has been divided into 3 subdomains by parallel mode and thats why you are getting 3 results in each time step.
D.M is offline   Reply With Quote

Old   September 1, 2016, 17:19
Default
  #3
Member
 
Join Date: Jun 2016
Posts: 66
Rep Power: 10
Zbynek is on a distinguished road
When you start a parallel computation, your mesh is divided among the computer cores you allocated. Any UDF that you use is sent to every core by default. If you want to change it, you need to use directives, such as "if RP_NODE", "if RP_HOST" etc. First, read a bit about UDF parallelization in the UDF/Customization Manual. Once you understand how the commands are passed around the cores, you will find out that to write a paralllelized UDF is not hard.

The code you posted is just simple printing of a message in the console. It gets printed once for each core. If you want to have it printed only once in total, use Message0 instead of Message. This commands performs the print only from node 0.

Some applications can become a bit more complicated. For example, if you want to integrate a quantity over the whole domain, you need to do it at each core, then send the partial results from all nodes to node 0 and then to sum it up. If you want to write the result in a file, you need to pass it to the host process. Anyway, that's just a very brief overview, I would recommend the manual, it is well understandable.
D.M likes this.
Zbynek is offline   Reply With Quote

Reply

Tags
fluent, fluent - udf - parallel, fluent udf


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
Problem running fluent with udf on batch tobi b. Fluent UDF and Scheme Programming 3 April 14, 2016 13:54
Reading a file from 32-bit Fluent 15.0 through a UDF for DPM in parallel anthony05 Fluent UDF and Scheme Programming 0 July 11, 2014 01:52
PROBLEM in UDF on parallel fluent mode rakadit Fluent UDF and Scheme Programming 0 July 13, 2012 06:51
Parallel running of Fluent Bhanu Gupta FLUENT 3 April 7, 2011 09:32
running multiple Fluent parallel jobs Michael Bo Hansen FLUENT 8 June 7, 2006 08:52


All times are GMT -4. The time now is 01:37.