MNS747,
Thank you for your comment. I tried your method and it worked. However when I did the same thing for an RVE with 125,000 elements, an error occured and abaqus cae closed itself after I clicked "Ok" on the error window.
As for the python code I made some progress. This is my program:
from abaqus import *
from abaqusConstants import *
from odbAccess import *
from visualization import *
import odbAccess
session.openOdb(path='Job-1.odb',name='job-1.odb',readOnly=True)
dt=session.odbs['Job-1.odb'].steps['Step-2'].frames[-1].fieldOutputs['NT11']
tfs=open("Takhteh.txt","w")
tfs.write(dt)
But I get the error which tells me I cannot write FieldOutputs in a text file, since it is neither string nor read only. How can I turn the contents of FieldOutputs into strings?
Thanks,
Ardavan.