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

FLUENT received fatal signal (ACCESS_VIOLATION)???

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   September 26, 2009, 18:04
Default FLUENT received fatal signal (ACCESS_VIOLATION)???
  #1
New Member
 
Jinfeng
Join Date: Aug 2009
Posts: 6
Rep Power: 16
Jinfeng is on a distinguished road
Dear Friends,

I wrote a DEFINE_ON_DEMAND type code to read some data from files into FLUENT so that I can use the data in later source term calculations. After interpreting it successfully, I clicked "EXCUTE" the Excute on Demand panel and I got this error message:

FLUENT received fatal signal (ACCESS_VIOLATION)
1. Note exact events leading to error.
2. Save cas/data under new name.
3. Exit programme and restart to continue.
4. Report error to your distributor.
Error object)

I have no idea what the problem could be, I am seeking some experts' opinions.........

Here is that part of the code(The matrix definitions was defined as global variables and were not pasted here):

DEFINE_ON_DEMAND(read_rho_exeyez)
{
int numnodes;
int i;

FILE *ifp; // Pointer for the data file
FILE *kfp;
int k=0;

numnodes = xdirnodes * ydirnodes * zdirnodes; // Calculate total number of nodes in volume
ifp = fopen("Rho.dat", "r"); // Open data file for scanning
kfp = fopen("ExEyEz.dat", "r");

//*** READ IN VALUES ***//
for(i=1; i<=numnodes; i++)
{
fscanf(ifp,
"%f", rho[k]);
fscanf(kfp,
"%f", dvdx[k]);
fscanf(kfp,
"%f", dvdy[k]);
fscanf(kfp,
"%f", dvdz[k]);
k++;
}

fclose(ifp);
fclose(kfp);
}
Jinfeng is offline   Reply With Quote

Old   October 19, 2009, 11:03
Default Pointers... always a problem
  #2
Senior Member
 
dmoroian's Avatar
 
Dragos
Join Date: Mar 2009
Posts: 648
Rep Power: 20
dmoroian is on a distinguished road
You should put a check for the pointers:
Code:
if (NULL == if)
   Error("Something is wrong with your input file!\n");
To read data with fscanf you need pointers, which means you have to dereference the variable if is not a pointer.

Code:
fscanf(ifp, "%f", &rho[k]);
To make the code look nicer I would use i-1 instead of k.

Dragos
dmoroian is offline   Reply With Quote

Reply


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
FLUENT received fatal signal (ACCESS_VIOLATION) CHAKER FLUENT 4 December 11, 2015 03:20
On Bug of Fluent 12.0 lzgwhy FLUENT 0 August 26, 2009 06:41
Problems in lauching FLUENT Lourival FLUENT 3 January 16, 2008 16:48
fatal signal (ACCESS_VIOLATION) manu FLUENT 0 December 10, 2007 06:10
FLUENT received fatal signal (ACCESS_VIOLATION) samy FLUENT 0 November 10, 2007 13:09


All times are GMT -4. The time now is 12:59.