|
[Sponsors] |
Windows Environment variables- to solve problems in compiling UDF in Fluent |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
February 29, 2012, 07:20 |
Windows Environment variables- to solve problems in compiling UDF in Fluent
|
#1 |
New Member
Samuel
Join Date: Nov 2011
Posts: 12
Rep Power: 15 |
Problems in compiling UDF in FLUENT:
1.In 'build' progress: 'nmake' is not recognized as an internal or external command... or LINK : fatal error LNK1104 kernel32.lib 2.In 'load' progress: Error code: 193 These problems are due to incorrect setup of Windows Environment variables. After several days' working on this issue, I finally solved them. And I think it is necessary to share my method. Programs: Ansys 13.0, Visual Studio 2008; System:Win 7 (64) Step 1: Find the console of Environment variables---My Computer->Properties->Advanced-> Environment variables Step 2: Change or add three variables below: X:\ means your installation path of VS. I. INCLUDE= X:\Visual Studio\VC\include;C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Include II. LIB =X:\Visual Studio\VC\lib\amd64;C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Lib\x64 III.Path=X:\Visual Studio\VC\bin\amd64;C:\Program Files (x86)\Microsoft Visual Studio\Common7\IDE PLEASE make sure that you can find every folder in the path above. If not, like Program Files (x86), then try to find it in other folders, like 'Program Files'. (In my computer, there are two folders, namely, C:\Program Files (x86) and C:\Program Files. The folder you want must be in one of them. ) By the way, this is for WIN 7(64). For 32 bits system, just ignore the 'amd64' and 'x64' in the Environment variables. (Without test, but valid ) That's all. I hope this can help. |
|
March 9, 2012, 10:28 |
Windows 7 UDF compilation error
|
#2 |
New Member
Saif Ullah
Join Date: Aug 2011
Posts: 10
Rep Power: 15 |
Please look into following weblink. I have solved my issues by tips given on this webpage.
http://www.cfd-online.com/Wiki/Fluent_FAQ Regards |
|
September 20, 2012, 21:46 |
|
#3 |
Member
Join Date: May 2009
Posts: 58
Rep Power: 17 |
I have tried that exactly the same as you have written, it did not work for me. Still I have an error like this, Please help. Appreciate it.
Deleted old libudf\win64\2d\libudf.dll 1 file(s) copied. (system "copy "C:\PROGRA~1\ANSYSI~1\v130\fluent"\fluent13.0.0\sr c\makefile_nt.udf "libudf\win64\2d\makefile" ") 1 file(s) copied. (chdir "libudf")() (chdir "win64\2d")() # Generating ud_io1.h time_step.c # Generating udf_names.c because of makefile time_step.obj udf_names.c # Linking libudf.dll because of makefile user_nt.udf udf_names.obj time_step.obj Microsoft (R) Incremental Linker Version 9.00.30729.01 Copyright (C) Microsoft Corporation. All rights reserved. LINK : fatal error LNK1104: cannot open file 'kernel32.lib' Done. |
|
April 30, 2013, 06:08 |
Error compiling UDF
|
#4 |
New Member
Carlos
Join Date: Dec 2011
Posts: 14
Rep Power: 15 |
Hi everybody!
I have followed the steps suggested in this forum but I have found a concatenation error when I try to load the UDF that I have built. It seems that the UDF has an error in the value of a variable because a part of the file adress is called twice. For this reason, the file cannot be found. Please give me your suggestions Carlos |
|
April 30, 2013, 07:25 |
|
#5 |
Senior Member
Paritosh Vasava
Join Date: Oct 2012
Location: Lappeenranta, Finland
Posts: 732
Rep Power: 23 |
@chmurillor
Do you get this error when you launch fluent separately (I mean not from workbench)? |
|
April 30, 2013, 09:10 |
|
#6 |
New Member
Carlos
Join Date: Dec 2011
Posts: 14
Rep Power: 15 |
Hi vasava
Thanks for your reply. This error is evidenced in both cases (with and without workbench) The first image corresponds to workbench and the next image was taken by opening Fluent directly. Do you know if an environment variable has a wrong value? Thanks |
|
April 30, 2013, 09:41 |
|
#7 |
Senior Member
|
I have a bad sight and can not see the error message clearly. You could unload the library, compile your source files, reload the library, and save your case file. Do not change the path of the case file or the lib afterwards and your should end up fine.
|
|
April 30, 2013, 11:04 |
|
#8 |
New Member
Carlos
Join Date: Dec 2011
Posts: 14
Rep Power: 15 |
No blackmask, the problem is still evidenced. Please, tell me where is the variable that we must modify.
This is the error that we get when we unload and reload the library. The UDF library you are trying to load (D:\vizcayamurillo\amidon\libudf) is not compiled for 3d on the curent platform (win64). The system cannot find the path specified. C:\Program Files\ANSYS Inc\v130\fluent tbin\win64\D:\vizcayamurillo\amidon\libudf\win64\3d\libudf.dl l The red part corresponds to the location of the .bat file and the blue one corresponds to the location of the libudf.dll file |
|
April 30, 2013, 11:25 |
|
#9 |
Senior Member
|
It seems that the "\n" is interpreted as the newline character in the following string
C:\Program Files\ANSYS Inc\v130\fluent\ntbin\win64\ and a ";" is missing after the final "\". You could check the file named "log" in the same directory as your case file and possibly find what goes wrong. |
|
January 19, 2014, 13:35 |
|
#10 | |
New Member
aeropaolo
Join Date: Jan 2014
Posts: 2
Rep Power: 0 |
Dear Samuel,
I get a similar error when I compile my UDF: "fatal error LNK1104: cannot open file LIBCMT.lib" Do you have any clue what's wrong? FYI, i'm using Windows 8.1 x64, Fluent 13 x64, Microsoft Visual Studio 2013 Express, SDK 8.1, .NET Framework 4.5.1. I know the "boundary conditions" are different, but the error is similar, so I thought you might know how to solve it. Thanx. Quote:
|
||
January 20, 2014, 02:27 |
|
#11 |
Senior Member
Paritosh Vasava
Join Date: Oct 2012
Location: Lappeenranta, Finland
Posts: 732
Rep Power: 23 |
@giovanni.el: I am not sure about Ansys software working with Windows 8. But I recommend you switch to Visual studio 2010 or 2008 and see if it works.
|
|
July 9, 2014, 08:37 |
|
#12 | |
New Member
...
Join Date: Jun 2013
Posts: 19
Rep Power: 13 |
Quote:
My system: Windows 7 (x64) + Fluent 14.5 (x64) + Visual Studio 2010 Professional + SDK 7.0A Step 1: Find the console of Environment variables---My Computer->Properties->Advanced-> Environment variables Step 2: Change or add three Environmental variables below: I. INCLUDE (capital letters) C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include;C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Include II. LIB (capital letters) C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\lib\amd64;C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Lib\x64 III.Path (small letters) C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\amd64;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE;C:\Program Files\ANSYS Inc\v145\fluent\ntbin\win64 Step 3: Start Fluent from "Visual Studio x64 Cross Tools Command Prompt" by just typing "fluent" in the command prompt. Step 4: Include the correct working directory while launching Fluent from GUI. Step 5: Compile the UDF normally: Define --> User defined --> Compiled --> etc.. |
||
October 1, 2014, 05:46 |
|
#13 |
New Member
Tanuja
Join Date: Aug 2014
Posts: 7
Rep Power: 12 |
Thanks a lot. Very good solutio. But please help me with this:I would be grateful
Creating library libudf.lib and object libudf.exp Done. Opening library "F:\Trials\Done 2 upto boundary conditions for trial\libudf"... Error: Error code: 193 Error: Error code: 193 Error Object: #f |
|
October 1, 2014, 06:57 |
|
#14 |
Senior Member
Paritosh Vasava
Join Date: Oct 2012
Location: Lappeenranta, Finland
Posts: 732
Rep Power: 23 |
||
October 1, 2014, 07:48 |
|
#15 |
New Member
Tanuja
Join Date: Aug 2014
Posts: 7
Rep Power: 12 |
Thank you for reply....
I tried after removing spaces in working directory name but it didn't work. Would you please suggest any other solution. The error is seen when I click the load button while compiling the UDF |
|
October 1, 2014, 12:33 |
|
#16 |
Member
ad
Join Date: Apr 2014
Posts: 75
Rep Power: 12 |
add "C:\Windows\System32" to your path variables
|
|
October 2, 2014, 00:59 |
|
#17 |
New Member
Tanuja
Join Date: Aug 2014
Posts: 7
Rep Power: 12 |
Thanks a lot....it worked.
I am using dynamic meshing. When I start calculations, I am getting the following error: update-dynamic-mesh failed. negative cell volume detected I am totally clueless about it..Please help me. I am using structured mesh-hexa. |
|
October 2, 2014, 02:22 |
|
#18 |
Member
ad
Join Date: Apr 2014
Posts: 75
Rep Power: 12 |
If there is not proper matching between grid size spacing and time increment the mesh won’t move. In this case fluent will show an error message for negative volume. So
before starting the simulation it is necessary to check the motion of the mesh for the selected grid size. If it shows error then the grid size or time step size is changed and the process is repeated. |
|
October 26, 2014, 09:36 |
|
#19 |
New Member
Nguyen Duc Thuyen
Join Date: Jul 2014
Posts: 7
Rep Power: 12 |
Hi everybody!
I have a error: Code:
'xcopy' is not recognized as an internal or external command, operable program or batch file. Copied D:\NCS\ANSYS\Fluent\UDF_one\elbow.c to libudf\src udf_names.c and user_nt.udf files in 3ddp are upto date. (system "copy "C:\PROGRA~1\ANSYSI~1\v150\fluent"\fluent15.0.0\src\makefile_nt.udf "libudf\win64\3ddp\makefile" ") 1 file(s) copied. (chdir "libudf")(chdir "win64\3ddp") Done. INCLUDE: C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include;C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Include LIB: C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\lib\amd64;C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Lib\x64 Path: C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\amd64;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE;C:\Program Files\ANSYS Inc\v150\fluent\ntbin\win64 My System: Windows 7 (x64) + Fluent 15 (x64) + Visual Studio 2010 Professional + SDK 7.0A Please give me your suggestions Thank! |
|
October 26, 2014, 13:21 |
|
#20 |
Member
ad
Join Date: Apr 2014
Posts: 75
Rep Power: 12 |
This thread might help you
http://www.cfd-online.com/Forums/flu...s7-64-bit.html |
|
Tags |
compiling, udf |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
About UDF compiling issues: 'nmake' | Haoyin Shan | Fluent UDF and Scheme Programming | 15 | November 4, 2019 19:05 |
UDF to record FLUENT Solver variables... | mariachi | Fluent UDF and Scheme Programming | 11 | September 24, 2019 01:07 |
CFX11 + Fortran compiler ? | Mohan | CFX | 20 | March 30, 2011 19:56 |
64bit error compiling UDF : divergence detected | UtoS_99 | FLUENT | 7 | March 29, 2011 04:19 |
UDF to record FLUENT solver variables... | mariachi | FLUENT | 1 | February 3, 2010 23:18 |