top of page
Search

How to extract the acceleration with Matlab?

  • Writer: miguel muniz
    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 All
Last Posts

If using this toolbox for research or industrial purposes, please cite:

​

G. Papazafeiropoulos, M. Muñiz-Calvente, E. Martínez-Pañeda. Abaqus2Matlab: a suitable tool for finite element post-processing. Advances in Engineering Software. Advances in Engineering Software. Vol 105. March 2017. Pages 9-16. 

DOI:10.1016/j.advengsoft.2017.01.006

Copyright (c) 2016 by George Papazafeiropoulos

 

All rights reserved.

 

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution

 

THIS SOFTWARE IS PROVIDED BY  THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

 

**MATLAB and ABAQUS, and their associated logos, are a registered trademark of The MathWorks, Inc. and  Dassault Systèmes, respectively. 

ABAQUS2MATLAB

© 2016 by M.Muniz Calvente.

  • Instagram
  • Facebook
  • Twitter
  • LinkedIn
  • YouTube
bottom of page