How to extract the acceleration with Matlab?
- miguel muniz
- Feb 12, 2017
- 1 min read
QUESTIONS:
I am trying to use Toolbox to read Abaqus output in Matlab. I want to extract the acceleration in Matlab, so I can do another analysis and then I can do a iteration to analyse different mass.
ANSWER:
You have to run the analysis in Abaqus in a way that an ascii results (*.fil) file is generated.
This can be achieved by specifying in the input file one of the following options:
*FILE FORMAT, ASCII
*EL FILE
or
*FILE FORMAT, ASCII
*NODE FILE
depending on whether you want to extract an element-type output or a node-type output respectively. In your case, the acceleration is a node-type output and therefore you have to specify the following option:
*FILE FORMAT, ASCII
*NODE FILE
A
The related Matlab functions that you have to use are the following:
http://www.mathworks.com/ matlabcentral/fileexchange/ 54919-abaqus2matlab/content/ Abaqus2Matlab_Toolbox2/ Fil2str.m
http://www.mathworks.com/ matlabcentral/fileexchange/ 54919-abaqus2matlab/content/ Abaqus2Matlab_Toolbox2/ OutputNodes/Rec103.m
and they should be placed in the Abaqus working directory. An example of extraction of acceleration results from Abaqus to Matlab can be found here:
http://www.mathworks.com/ matlabcentral/fileexchange/ 54919-abaqus2matlab/content/ Abaqus2Matlab_Toolbox2/ MatlabExamples/Verify103.m
in which the overall procedure is shown for the extraction of the results.
I hope this helps,
Recent Posts
See AllComputer Shapes the Theory is the Abaqus2Matlab Blog, here you can find news, tips and announcements of new releases.
Thank you very much for your interest in Abaqus2Matlab. Regarding your issue, please replace the option *FILE FORMAT, ASCII with the...
The key idea is to transfer data (1) from Matlab to Abaqus and (2) from Abaqus to Matlab, in order to enforce a running optimization...