Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations JAE on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Linking abaqus 2024 with intel oneapi base toolkit and intel oneAPI HPC 2024

Status
Not open for further replies.

RED14

Student
Joined
Jun 20, 2024
Messages
13
Location
MA
hello everyone,
"Unable to find a fortran compiler on this system. if Intel fortran is installed on this system, please load infortvars.bat before running abaqus "
How can I solve this problem ?
intel base toolkit 2025 and intel oneapi HPC 2025
ABAQUS 2024
 
Hello Sayed Ghalleby
I finally solved this problem, thank you for reply
can u share more how did u do that please , beacause i am also trying to link one Api with abaqus but i could'nt
 
For intel base & hpc toolkits 2025.0 and Abaqus 2024, and VS 2019

1. Go to the directory C:\SIMULIA\Commands in file explorer

2. Edit abq2024.bat in notepad, and add the following 3 lines copy-pasted, below @echo off
but above setlocal, then save the file

SET PATH=%PATH%; C:\Program Files (x86)\Intel\oneAPI\compiler\2025.0\bin;
@call "C:\Program Files (x86)\Intel\oneAPI\compiler\2025.0\env\vars.bat" intel64
@call "C:\Program Files (x86)\Intel\oneAPI\mkl\2025.0\env\vars.bat"

3. Go to C:\SIMULIA\EstProducts\2024\win_b64\SMA\site in file explorer

4. Edit abaqus_v6.env in notepad, and add at the very end of the file, then save:

compile_fortran += ['/names:lowercase',]
link_sl='LINK /NODEFAULTLIB:LIBCMT.LIB /dll /def:%E /out:%U %F %A %L %B'

5. In the same directory, edit custom_v6.env, add at the end, then save the file

compile_fortran += ['/names:lowercase',]

6. In the same directory, edit win86_64.env in notepad, and search for 'ifort'
6.1 replace the term 'ifort' with:
'ifx'

6.2 Then save the file

7. To test linking success, create a folder on desktop, enter it, right click, and click 'open in terminal', and enter the following:

Abq2024 verify -user_std
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top