


When an element is created in the input file, compas_fea will also make an individual set for just that element named element_x, where x is the Python 0 based element number. There are a few important points to highlight about the Python procedure and data format of the Structure object, and the generated input file format:Ībaqus uses a numbering system that starts from 1, therefore for the input file every node and element from the Structure object has 1 added to it (as Python is 0 based), which is then subtracted for all results data so that it remains consistent with the input numbering system.

inp files is vast, it will not be described here what every line of the. Because the official reference documentation for Abaqus. With this file, it is possible to generate and analyse a structural model, as well as request certain output data to be written to an output database. The input file for generating an Abaqus structural model is the. analyse_and_extract() are: output (bool) to display terminal text updates, return_data (bool) to return results back to structure.results or not, components (list) to request individual components of the requested fields, and dof (int) which is specific to OpenSees for the number of degrees-of-freedom at a node (3 or 6). Some additional arguments that can be given to. analyse_and_extract ( software = 'abaqus', fields =, cpus = 4, license = 'research' ) analyse_and_extract(), which takes the software string ( 'abaqus', 'ansys' or 'opensees'), a list of the data fields to extract, the number of processor cores to use with cpus (currently for Abaqus only and defaults to 4), and if needed some information on the license type (defaults to 'research', a restricted 'student' license is also accepted). These three processes are performed in sequence using the method. The relevant data are extracted with method. analyse().Įxtract the data from the analysis results and return them back to structure.results. Send the input file to the FE solver for analysis with method. Write the native input file for the FE software with the method. There are three processes involved when analysing a Structure object using a specific finite element software package or library: This page describes how to analyse a completed Structure object and view the resulting data.
