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

MPI Application rank 2 exited before MPI_Finalize() with status 2 The fl process cou

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   June 7, 2019, 05:36
Default MPI Application rank 2 exited before MPI_Finalize() with status 2 The fl process cou
  #1
New Member
 
venu
Join Date: May 2019
Posts: 8
Rep Power: 7
Venu Angirekula is on a distinguished road
Hii Everyone,
i am working on Multiphase simulation in ANSYS Fluent 19.2, I have to know the volume fraction data for every timestep, so i used DEFINE_ADJUST to obtained volume fraction data. but my simulation is not running by poping this error at the beginning. If I comment the vof[i][j] line then its running fine, so i am feeling like problem with the C_VOF. please help me to sort it out.
UDF:


#include "udf.h"

Thread *t;
Thread **pt;
face_t f;
cell_t c;
real h = 0.0004;
real vof[25][25];
real X[ND_ND] ;
int i,j;
DEFINE_ADJUST(vol_frac,domain)
{

Domain *pdomain = DOMAIN_SUB_DOMAIN(domain,P_PHASE);

mp_thread_loop_c (t,domain,pt)
{

Thread *tp = pt[P_PHASE];
begin_c_loop_all(c,t)
{
C_CENTROID(X,c,tp);
i = floor((X[0]-h/2)/h) ;
j = floor((X[1]-h/2)/h) ;
vof[i][j] = C_VOF(c,tp);

}
end_c_loop(c,t)
}
}
Venu Angirekula is offline   Reply With Quote

Reply

Tags
received signal sigsegv


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
Linux Batch - Star-CCM+ .. running Sims in batchmode eRzBeNgEl STAR-CCM+ 3 August 29, 2011 05:43
Error using LaunderGibsonRSTM on SGI ALTIX 4700 jaswi OpenFOAM 2 April 29, 2008 11:54
Is Testsuite on the way or not lakeat OpenFOAM Installation 6 April 28, 2008 12:12
MPI_Recv process in local group is dead rank 44 MPI_COMM_WORLD sampaio OpenFOAM Running, Solving & CFD 0 January 9, 2006 10:43
MPI Application in HPC wendy Siemens 0 May 19, 2005 02:50


All times are GMT -4. The time now is 21:23.