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

HELP: udf compiling mistake

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   June 25, 2006, 08:39
Default HELP: udf compiling mistake
  #1
Siyu
Guest
 
Posts: n/a
udf userguide (eg. 4.6.12)

when I compiled the udf, mistake occured and libudf.dll could not be built. Who can tell me what wrong with it?

..\..\src\condense.c(64) : warning C4047: 'initializing' : 'struct thread_struct *' differs in levels of indirection from 'int ' # Generating udf_names.c because of makefile condense.obj udf_names.c # Linking libudf.dll because of makefile user_nt.udf udf_names.obj condense.obj Microsoft (R) Incremental Linker Version 6.00.8447 Copyright (C) Microsoft Corp 1992-1998. All rights reserved.

Creating library libudf.lib and object libudf.exp condense.obj : error LNK2001: unresolved external symbol _P_THREAD libudf.dll : fatal error LNK1120: 1 unresolved externals

DEFINE_DPM_LAW(condenshumidlaw,p,coupled) { real area; real mp_dot; cell_t c = P_CELL(p); /* Get Cell and Thread from */ Thread *t = P_THREAD(p); /* Particle Structure using new macros*/

(this is the warning line.)

area = 4.0* M_PI * (P_DIAM(p)*P_DIAM(p));

/* Note This law only used if Humidity > 1.0 so mp_dot always positive*/ mp_dot = CONDENS*sqrt(area)*(myHumidity(c,t)-1.0);

if(mp_dot>0.0) {

P_MASS(p) = P_MASS(p) + mp_dot*P_DT(p);

P_DIAM(p) = pow(6.0*P_MASS(p)/(P_RHO(p)* M_PI), 1./3.);

P_T(p)=C_T(c,t); /* Assume condensing particle is in thermal

equilibrium with fluid in cell */ }

  Reply With Quote

Old   June 26, 2006, 06:43
Default Re: HELP: udf compiling mistake
  #2
web yin
Guest
 
Posts: n/a
what you did is the interpreted file ,not compiled files ,there are some differnces between them
  Reply With Quote

Old   June 26, 2006, 06:58
Default Re: HELP: udf compiling mistake
  #3
Siyu
Guest
 
Posts: n/a
Thank you. I finally found the wrong. The right marco is "P_CELL_THREAD" not the "P_thread".

  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
compiling my Udf noa Fluent UDF and Scheme Programming 8 November 7, 2018 20:08
Compiling UDF on a cluster Adya FLUENT 1 December 14, 2009 11:30
UDF compiling problem in Flient 6.3 jeevan kumar FLUENT 2 February 25, 2009 00:43
udf compiling problem akr FLUENT 3 August 22, 2007 07:14
On Compiling a UDF David Chabot FLUENT 5 May 20, 2005 09:13


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