the accuracy number
the accuracy number
(OP)
Hi,
When I look at the result (e.g. displacement), there is only four digital number. How can I get more number?
Thanks.
When I look at the result (e.g. displacement), there is only four digital number. How can I get more number?
Thanks.





RE: the accuracy number
FEA is NOT an exact science, it is an approximation.
Four digits are probably too many quote.
RE: the accuracy number
RE: the accuracy number
- 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.
RE: the accuracy number
RE: the accuracy number
What do I do if I want to control the number of digits in input.inp and see the results in the job_name.dat?