CFD Online Discussion Forums

CFD Online Discussion Forums (https://www.cfd-online.com/Forums/)
-   Fluent UDF and Scheme Programming (https://www.cfd-online.com/Forums/fluent-udf/)
-   -   Windows Environment variables- to solve problems in compiling UDF in Fluent (https://www.cfd-online.com/Forums/fluent-udf/97960-windows-environment-variables-solve-problems-compiling-udf-fluent.html)

Modest Cat February 29, 2012 06:20

Windows Environment variables- to solve problems in compiling UDF in Fluent
 
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.

saifullahkhalid March 9, 2012 09:28

Windows 7 UDF compilation error
 
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

amir2920 September 20, 2012 20:46

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.

chmurillor April 30, 2013 05:08

Error compiling UDF
 
1 Attachment(s)
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

vasava April 30, 2013 06:25

@chmurillor

Do you get this error when you launch fluent separately (I mean not from workbench)?

chmurillor April 30, 2013 08:10

1 Attachment(s)
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

blackmask April 30, 2013 08:41

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.

chmurillor April 30, 2013 10:04

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

blackmask April 30, 2013 10:25

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.

giovanni.el January 19, 2014 12:35

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:

Originally Posted by Modest Cat (Post 346867)
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.


vasava January 20, 2014 01:27

@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.

manalis July 9, 2014 07:37

Quote:

Originally Posted by Modest Cat (Post 346867)
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.

Your post was very helpful. I will just quote some small changes that I made to your solution to suit my needs. I think that it may help others with the same problems, more or less.

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..

icemcfd13 October 1, 2014 04:46

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

vasava October 1, 2014 05:57

Quote:

Originally Posted by icemcfd13 (Post 512535)
Opening library "F:\Trials\Done 2 upto boundary conditions for trial\libudf"...

Error Object: #f[/I]

Do you have spaces in your file or folder name? If so, rename the file/folder and try again.

icemcfd13 October 1, 2014 06:48

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

adi.ptb October 1, 2014 11:33

add "C:\Windows\System32" to your path variables

icemcfd13 October 1, 2014 23:59

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.

adi.ptb October 2, 2014 01:22

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.

tandem October 26, 2014 08:36

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.

I added the Environment:
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!

adi.ptb October 26, 2014 12:21

This thread might help you
http://www.cfd-online.com/Forums/flu...s7-64-bit.html


All times are GMT -4. The time now is 21:51.