Hi Everyone,
Please note that the bulkDataBlocks method of the FieldOutput object is now available in Python ODB API as well starting from Abaqus release 6.13-1. You can access it as seen below.
>>> b = o.steps[stepName].frames[0].fieldOutputs['U'].bulkDataBlocks[0]
>>> print b
({'baseElementType': '', 'componentLabels': ('U1', 'U2', 'U3'), 'conjugateData': None, 'data': array([[0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0]], 'f'), 'elementLabels': None, 'instance': None, 'integrationPoints': None, 'localCoordSystem': None, 'mises': None, 'nodeLabels': array([1, 52, 16, 1633906540, 1869562732, 2035508338, 1835365491, 0, 9, 10, 11, 12, 13, 14, 15, 16], 'i'), 'position': NODAL, 'sectionPoint': None, 'type': VECTOR})
TechTip