Subroutine does not work depending on Fortran version
Subroutine does not work depending on Fortran version
(OP)
Hello to everyone, I am using Abaqus with a user defined element (UEL). I can run a job in a computer (No1) that works with this subroutine in Abaqus 6.12 with Intel Visual Fortran 10.1, but in other computer (No2) with Abaqus 6.12 and Intel Visual Fortran 11.1 it doesn't work. In computer No2 I have tried other jobs with VUMAT and it works, this can be possible?
Thank you in advance
Thank you in advance





RE: Subroutine does not work depending on Fortran version
There was a thread earlier with a link to Simulia showing what versions of Fortran that were supported. I guess you have a fortran-related error?
Also, if fortran was installed after Abaqus, maybe the correct path wasn't created. Below is how I got it to work on my machine (I'm not sure which version I had installed).
**************************************************
Go to environment variables (system in windows)
a. Add the following to the system variable called "Path": C:\Program Files (x86)\Intel\Composer XE 2011 SP1\bin;C:\Program Files (x86)\Intel\Composer XE 2011 SP1\bin\intel64
b. Do not delete previous paths.
Change abaqus.bat and abq6141.bat in C:\SIMULIA\Abaqus\Commands
a. Make it look like the following:
b. @echo off
@call ifortvars.bat intel64 vs2010
"C:\SIMULIA\Abaqus\Commands\abq6141.bat" %*
Good luck!