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

my case works fine with FLUENT 14.0 but gives error with FLUENT 15.0

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   November 10, 2014, 10:19
Default my case works fine with FLUENT 14.0 but gives error with FLUENT 15.0
  #1
New Member
 
Join Date: Feb 2014
Posts: 5
Rep Power: 12
ayousefi is on a distinguished road
Hi everybody
Here is a short description of my case:
-geometry: 3D, spherical cavity
-unsteady
-two phase flow with free surface (using VOF)
-laminar
The spherical cavity rotates with a time varying angular velocity. This motion is imposed, using a UDF and dynamic mesh technique.
My case works fine with FLUENT 14.0 in both serial and parallel modes. Now I'm forced to use FLUENT 15.0. It gives this error message in serial mode:

Quote:
Updating mesh at time level N...
Error: received a fatal signal (Segmentation fault).

Error: received a fatal signal (Segmentation fault).
Error Object: #f


and this error message in parallel mode:

Quote:
Updating mesh at time level N...
================================================== ============================

Node 999999: Process 3800: Received signal SIGSEGV.

================================================== ============================

================================================== ============================

Node 0: Process 3940: Received signal SIGSEGV.

================================================== ============================

================================================== ============================

Node 1: Process 1664: Received signal SIGSEGV.

================================================== ============================

================================================== ============================

Node 2: Process 5876: Received signal SIGSEGV.

================================================== ============================

================================================== ============================

Node 3: Process 5232: Received signal SIGSEGV.

================================================== ============================
MPI Application rank 0 exited before MPI_Finalize() with status 2
The fl process could not be started.


And this is my UDF, which I use for dynamic mesh:

PHP Code:
#include "udf.h"
#include "stdio.h"
#include "math.h"
#include "unsteady.h"

#define pi 3.14159265

DEFINE_GRID_MOTION(eye,domain,dt,time,dtime)
{
Thread *tf DT_THREAD(dt);
face_t f;
Node *v;
real dtheta,a,b;
int n;

SET_DEFORMING_THREAD_FLAG(THREAD_T0(tf));
begin_f_loop(f,tf)
{
f_node_loop(f,tf,n)
{
v=F_NODE(f,tf,n);
if (
NODE_POS_NEED_UPDATE (v))
{
NODE_POS_UPDATED(v);

    
dtheta=((25/9)*pi*(1-pow(tanh((1000*(time-0.2))/30),2)))*dtime;

a=cos(dtheta)*NODE_X(v)-sin(dtheta)*NODE_Y(v);
b=sin(dtheta)*NODE_X(v)+cos(dtheta)*NODE_Y(v);
NODE_X(v)=a;
NODE_Y(v)=b;
}
}
}
end_f_loop(f,tf);



I will appreciate any help
Thanks
ayousefi is offline   Reply With Quote

Old   December 19, 2014, 07:00
Default
  #2
New Member
 
Wei Yanji
Join Date: Mar 2012
Posts: 1
Rep Power: 0
PHThree is on a distinguished road
Hi ayousefi,

Have you solved your problem? I met the same error using VOF+dynamic mesh(cutcell). But I did not meet such problem with dynamic layering remeshing with the same UDF.

I guess the error comes from the remeshing method. I appreciate if you can share your experience.

Thank you
PHThree is offline   Reply With Quote

Reply

Tags
error, fluent, udf, vof


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
Is Playstation 3 cluster suitable for CFD work hsieh OpenFOAM 9 August 16, 2015 14:53
Changing the grid on the same set-up Katya FLUENT 7 October 8, 2009 16:31
fluent case n data files not exporting to tecplot krishna FLUENT 2 February 17, 2007 23:24
Free surface boudary conditions with SOLA-VOF Fan Main CFD Forum 10 September 9, 2006 12:24
Fluent case file into Gambit Eric R. FLUENT 7 July 17, 2002 14:11


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