|
[Sponsors] |
June 25, 2006, 09:39 |
HELP: udf compiling mistake
|
#1 |
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 */ } |
|
June 26, 2006, 07:43 |
Re: HELP: udf compiling mistake
|
#2 |
Guest
Posts: n/a
|
what you did is the interpreted file ,not compiled files ,there are some differnces between them
|
|
June 26, 2006, 07:58 |
Re: HELP: udf compiling mistake
|
#3 |
Guest
Posts: n/a
|
Thank you. I finally found the wrong. The right marco is "P_CELL_THREAD" not the "P_thread".
|
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
compiling my Udf | noa | Fluent UDF and Scheme Programming | 8 | November 7, 2018 21:08 |
Compiling UDF on a cluster | Adya | FLUENT | 1 | December 14, 2009 12:30 |
UDF compiling problem in Flient 6.3 | jeevan kumar | FLUENT | 2 | February 25, 2009 01:43 |
udf compiling problem | akr | FLUENT | 3 | August 22, 2007 08:14 |
On Compiling a UDF | David Chabot | FLUENT | 5 | May 20, 2005 10:13 |