cooln
Mechanical
- Jul 20, 2007
- 4
I am doing a simple analysis where the loading is due to thermal strain. I have created a job using CAE and I am using user subroutine utemp to supply nodal temperature values:
SUBROUTINE UTEMP(TEMP,MSECPT,KSTEP,KINC,TIME,NODE,COORDS)
C
INCLUDE 'ABA_PARAM.INC'
C
DIMENSION TEMP(MSECPT), TIME(2), COORDS(3)
C
OPEN(UNIT=1,FILE='temp-data.txt',STATUS='OLD',IOSTAT=IOS)
C
C read temp for node= NODE
C
CLOSE(1)
C
RETURN
END
--------------------------------------------------------
The trouble is that the subroutine somehow simply wont open the existing file. The execution command that I am using is:
abaqus job=jobname user=utemp_file.f
Thanks in advance for all help!
SUBROUTINE UTEMP(TEMP,MSECPT,KSTEP,KINC,TIME,NODE,COORDS)
C
INCLUDE 'ABA_PARAM.INC'
C
DIMENSION TEMP(MSECPT), TIME(2), COORDS(3)
C
OPEN(UNIT=1,FILE='temp-data.txt',STATUS='OLD',IOSTAT=IOS)
C
C read temp for node= NODE
C
CLOSE(1)
C
RETURN
END
--------------------------------------------------------
The trouble is that the subroutine somehow simply wont open the existing file. The execution command that I am using is:
abaqus job=jobname user=utemp_file.f
Thanks in advance for all help!