36. fe_post — A postprocessor for ABAQUS output files.

A postprocessor for ABAQUS output files.

The ABAQUS .fil output file can be scanned and translated into a pyFormex script with the ‘postabq’ command. Use it as follows:

postabq job.fil > job.py

Then execute the created script from inside pyFormex.

class fe_post.FeResult(name='__FePost__')

FeResult objects have the following methods:

datasize(key, data)
Abqver(version)
Date(date, time)
Size(nelems, nnodes, length)
Dofs(data)
Heading(head)
Node(nr, coords, normal=None)
Element(nr, typ, conn)
Nodeset(key, data)
NodesetAdd(data)
Elemset(key, data)
ElemsetAdd(data)
Finalize()
Increment(step, inc)
EndIncrement()
Label(tag, value)
NodeOutput(key, nodid, data)
ElemHeader()
ElemOutput(key, data)
Export()
Align on the last increment and export results
do_nothing(None)
A do nothing function to stand in for as yet undefined functions.
setStepInc(step, inc)
getSteps()
Return all the step keys.
getIncs(step)
Return all the incs for given step.
getres(key, domain='nodes')

Return the results of the current step/inc for given key.

The key may include a component to return only a single column of a multicolumn value.

printSteps()
Print the steps/increments/resultcodes for which we have results.

Documentation

Previous topic

35. fe_abq — An interface to write Finite Element models in Abaqus input file format.

Next topic

37. postproc — Postprocessing functions

This Page