So I am writing a fotran90 code in which I run an executable using system calls:
call system('./myexec')
The executable program writes the data into output file opdata.dat which fortran reads:
read(unit=1,file='opdata.dat',status='old')
!
! Read output data from file
!
close(1)
However, the...
I am tring to do stress analysis due to thermal strains:
My main fortran driver code supplies nodal temperature data, the abaqus reads nodal temperatures through user subroutine utemp and compltes the stress analysis. This process repeats multiple times for different temperature profiles.
The...
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...