Setup Abaqus Subroutine
Software Preparation
1. Install visual studio 2022. Select components in the picture below:
2. Install Intel? Fortran Compiler only after visual studio installed. Link: https://www.intel.com/content/www/us/en/developer/articles/tool/oneapi-standalone-components.html#fortran. 3. Install Abaqus 2022 at any time you want. It's both OK to install Abaqus first or last. Modify System Environment Variables
add this path in System Properties > Environment Variables > System variables > Path: C:\Program Files (x86)\Intel\oneAPI\compiler\latest\windows\bin\intel64 Modify shortcuts
Modify two shortcuts, add follow command in front of shortcuts' original target:
"C:\Program Files (x86)\Intel\oneAPI\compiler\latest\env\vars.bat" intel64 vs2022 &
tip: "intel64" and "vs2022" are variables used by "vars.bat". You could open "vars.bat" to check which values supported.
For example:
Original CAE shortcut Target:
"C:\Program Files\SIMULIA\EstProducts\2022\win_b64\resources\install\cmdDirFeature\launcher.bat" cae || pause
Modified CAE shortcut Target:
"C:\Program Files (x86)\Intel\oneAPI\compiler\latest\env\vars.bat" intel64 vs2022 & "C:\Program Files\SIMULIA\EstProducts\2022\win_b64\resources\install\cmdDirFeature\launcher.bat" cae || pause
Original Command shortcut Target:
C:\Windows\System32\cmd.exe /k
Modified Command shortcut Target:
"C:\Program Files (x86)\Intel\oneAPI\compiler\