You can use
- CAE->visualization->Report
and output to displacement field to a file. The program lets you to adjust the number of significant digits to be used for the output values.
- ABAQUS Scripting Interface to obtain the values with the full number of digits:
Open the .odb file, let's say my_odb.odb:
frame=session.odbs['C:/Temp/my_odb.odb'].steps['step_name'].frames[frame_number]
values=frame.fieldOutput['U'].values
for iVal in values:
print iVal.instance.name, iVal.nodeLabel, " U1=", iVal.data[0], " U2=",iVal.data[1], " Magnitude=",values[0].magnitude
You should set 'C:/Temp/my_odb.odb' , 'step_name' and frame_number according to your needs.