8.6 Writing to an output database

You can write your own data to an output database, and you can use ABAQUS/CAE to view the data. Writing to an output database is very similar to reading from an output database. When you open an existing database, the Odb object contains all the objects found in the output database, such as instances, steps, and field output data. In contrast, when you are writing to a new output database, these objects do not exist. As a result you must use a constructor to create the objects. For example, you use the Part constructor to create a Part object, the Instance constructor to create an OdbInstance object, and the Step constructor to create an OdbStep object.

After you create an object, you use methods of the objects to enter or modify the data associated with the object. For example, if you are creating an output database, you first create an Odb object. You then use the Part constructor to create a part. After creating the part, you use the addNodes and addElements methods of the Part object to add nodes and elements, respectively. Similarly, you use the addData method of the FieldOutput object to add field output data to the output database. After creating an output database, you should use the save method on the Odb object to save the output database.

The example script in Creating an output database, Section 8.10.2, also illustrates how you can write to an output database.

The following topics are covered:


8.6.1 Creating a new output database

You use the Odb constructor to create a new, empty Odb object.

odb = Odb(name='myData',
    analysisTitle='derived data',
    description='test problem',
    path='testWrite.odb')
For a full description of the Odb command, see Odb, Section 30.1.1 of the ABAQUS Scripting Reference Manual. ABAQUS creates the RootAssembly object when you create or open an output database.

You use the save method to save the output database.

odb.save()
For a full description of the save command, see save, Section 30.1.4 of the ABAQUS Scripting Reference Manual.


8.6.2 Writing model data

To define the geometry of your model, you first create the parts that are used by the model and then you add nodes and elements to the parts. You then define the assembly by creating instances of the parts. If the output database already contains results data, you should not change the geometry of the model. This is to ensure that the results remain synchronized with the model.

Part

If the part was created by ABAQUS/CAE, the description of the native ABAQUS/CAE geometry is stored in the model database, but it is not stored in the output database. A part is stored in an output database as a collection of nodes, elements, surfaces, and sets. You use the Part constructor to add a part to the Odb object. You can specify the type of the part; however, only DEFORMABLE_BODY is currently supported. For example,

part1 = odb.Part(name='part-1', 
    embeddedSpace=THREE_D, type=DEFORMABLE_BODY)
For a full description of the Part constructor, see OdbPart object, Section 30.18 of the ABAQUS Scripting Reference Manual. The new Part object is empty and does not contain geometry. After you create the Part object, you add nodes and elements.

You use the addNodes method to add nodes by defining node labels and coordinates. You can also define an optional node set. For example,

nodeData = (  (1, 1,0,0),  (2, 2,0,0),  
              (3, 2,1,0.1),  (4, 1,1,0.1),  
              (5, 2,-1,-0.1),  (6, 1,-1,-0.1), ) 
part1.addNodes(nodeData=nodeData, nodeSetName='nset-1') 
For a full description of the addNodes command, see addNodes, Section 30.18.4 of the ABAQUS Scripting Reference Manual.

After you have created nodes, you can use the NodeSetFromNodeLabels constructor to create a node set from the node labels. For more information, see NodeSetFromNodeLabels, Section 30.19.2 of the ABAQUS Scripting Reference Manual.

Similarly, you use the addElements method to add elements to the part using a sequence of element labels, element connectivity, and element type. You can also define an optional element set and an optional section category. For example,

# Set up the section categories

sCat = odb.SectionCategory(name='S5', 
    description='Five-Layered Shell')

spBot = sCat.SectionPoint(number=1, 
    description='Bottom')
spMid = sCat.SectionPoint(number=3, 
    description='Middle')
spTop = sCat.SectionPoint(number=5, 
    description='Top')

elementData = ((1, 1,2,3,4),
               (2, 6,5,2,1),)
part1.addElements(elementData=elementData, type='S4',
    elementSetName='eset-1', sectionCategory=sCat)
For a full description of the addElements command, see addElements, Section 30.18.2 of the ABAQUS Scripting Reference Manual.

The RootAssembly object

The root assembly is created when you create the output database. You access the RootAssembly object using the same syntax as that used for reading from an output database.

odb.rootAssembly
You can create both instances and regions on the RootAssembly object.

Part instances

You use the Instance constructor to create part instances of the parts you have already defined using the Part constructor. For example,

a = odb.rootAssembly
instance1 = a.Instance(name='part-1-1', object=part1)
You can also supply an optional local coordinate system that specifies the rotation and translation of the part instance. You can add nodes and elements only to a part; you cannot add elements and nodes to a part instance. As a result, you should create the nodes and elements that define the geometry of a part before you instance the part. For a full description of the Instance command, see OdbInstance object, Section 30.14 of the ABAQUS Scripting Reference Manual.

Regions

Region commands are used to create sets from element labels, node labels, and element faces. You can create a set on a part, part instance, or the root assembly. Node and element labels are unique within an instance but not within the assembly. As a result, a set on the root assembly requires the names of the part instances associated with the nodes and elements. You can also use region commands to create surfaces. For example,

# An element set on an instance
eLabels = [9,99]
elementSet = instance1.ElementSetFromElementLabels(
    name='elsetA',elementLabels=eLabels)
# A node set on the rootAssembly
nodeLabels = (5,11)
instanceName = 'part-1-1'
nodeSet = assembly.NodeSetFromNodeLabels(
    name='nodesetRA',((instanceName,nodeLabels),))

The region commands are described in Chapter 39, Region commands,” of the ABAQUS Scripting Reference Manual.

Materials

You use the Material object to list material properties.

Materials are stored in the materials repository under the Odb object.

To create an isotropic elastic material, with a Young's modulus of 12000.0 and an effective Poisson's ratio of 0.3 in the output database:

    materialName = "Elastic Material"
    material_1 = odb.Material(name=materialName)
    material_1.Elastic(type=ISOTROPIC,table=((12000,0.3),))

For more information, see Chapter 25, Material commands,” of the ABAQUS Scripting Reference Manual.

Sections

You use the Section object to create sections and profiles.

Sections are stored in the sections repository under the Odb object.

The following code creates a homogeneous solid section object. A Material object must be present before creating a Section object. An exception is thrown if the material does not exist.

sectionName = 'Homogeneous Solid Section'
mySection = odb.HomogeneousSolidSection( name = sectionName, 
                                         material = materialName, 
                                         thickness = 2.0)       

To create a circular beam profile object in the output database:

profileName = "Circular Profile"
radius = 10.00
odb.CircularProfile(name = profileName, r = radius)       

Section assignments

You use the SectionAssignment object to assign sections and their associated material properties to regions of the model. SectionAssignment objects are members of the Odb object. For a full description of the assignSection method, see assignSection, Section 30.14.7 of the ABAQUS Scripting Reference Manual.

All Elements in an ABAQUS analysis need to be associated with section and material properties. Section assignments provide the relationship between elements in an Instance object and their section properties. The section properties include the associated material name. To create an element set and assign a section:

elLabels = (1,2)
elset = instance.ElementSetFromElementLabels(
    name=materialName, elementLabels=elLabels)
instance.assignSection(region=elset,section=section)    


8.6.3 Writing results data

To write results data to the output database, you first create the Step objects that correspond to each step of the analysis. If you are writing field output data, you also create the Frame objects that will contain the field data. History output data are associated with Step objects.

Steps

You use the Step constructor to create a results step for time, frequency, or modal domain results. For example,

step1 = odb.Step(name='step-1',  
    description='', domain=TIME, timePeriod=1.0)
The Step constructor has an optional previousStepName argument that specifies the step after which this step must be inserted in the steps repository. For a full description of the Step command, see Step, Section 30.20.1 of the ABAQUS Scripting Reference Manual.

Frames

You use the Frame constructor to create a frame for field output. For example,

frame1 = step1.Frame(frameId=1, 
    frameValue=0.1, description='')
For a full description of the Frame command, see Frame, Section 30.13.3 of the ABAQUS Scripting Reference Manual.


8.6.4 Writing field output data

A FieldOutput object contains a “cloud of data values” (e.g., stress tensors at each integration point for all elements). Each data value has a location, type, and value. You add field output data to a Frame object by first creating a FieldOutput object using the FieldOutput constructor and then adding data to the FieldOutput object using the addData method. For example,

# Create the part and the instance.

part1 = odb.Part(name='part-1', 
    embeddedSpace=THREE_D, type=DEFORMABLE_BODY)
a = odb.rootAssembly
instance1 = a.Instance(name='part-1-1', object=part1)

# Write nodal displacements

uField = frame1.FieldOutput(name='U',
    description='Displacements', type=VECTOR)

# Create the node labels.

nodeLabelData = (1, 2, 3, 4, 5, 6)

# Each set of data corresponds to a node label.

dispData = ((1,2,3),
            (4,5,6),
            (7,8,9),
            (10,11,12),
            (13, 14, 15),
            (16,17,18))

# Add nodal data to the FieldOutput object using the
# node labels and the nodal data for this part instance.

uField.addData(position=NODAL, instance=instance1,
    labels=nodeLabelData, data=dispData)

# Make this the default deformed field for this step.

step1.setDefaultDeformedField(uField)
For a full description of the FieldOutput constructor, see FieldOutput, Section 30.3.1 of the ABAQUS Scripting Reference Manual.

The type argument to the FieldOutput constructor describes the type of the data—tensor, vector, or scalar. The properties of the different tensor types are:

Full tensor

A tensor that has six components and three principal values. Full three-dimensional rotation of the tensor is possible.

Three-dimensional surface tensor

A tensor that has only three in-plane components and two principal values. Full three-dimensional rotation of the tensor components is possible.

Three-dimensional planar tensor

A tensor that has three in-plane components, one out-of-plane component, and three principal values. Full three-dimensional rotation of the tensor components is possible.

Two-dimensional surface tensor

A tensor that has only three in-plane components and two principal values. Only in-plane rotation of the tensor components is possible.

Two-dimensional planar tensor

A tensor that has three in-plane components, one out-of-plane component, and three principal values. Only in-plane rotation of the tensor components is possible.

The valid components and invariants for the different data types are given in Table 8–1.

Table 8–1 Valid components and invariants for ABAQUS data types.

Data typeComponentsInvariants
SCALAR  
VECTOR1, 2, 3MAGNITUDE
TENSOR_3D_FULL 11, 22, 33, 12, 13, 23MISES, TRESCA, PRESS, INV3, MAX_PRINCIPAL, MID_PRINCIPAL, MIN_PRINCIPAL
TENSOR_3D_SURFACE11, 22, 12MAX_PRINCIPAL, MIN_PRINCIPAL, MAX_INPLANE_PRINCIPAL, MIN_INPLANE_PRINCIPAL
TENSOR_3D_PLANAR11, 22, 33, 12MISES, TRESCA, PRESS, INV3, MAX_PRINCIPAL, MID_PRINCIPAL, MIN_PRINCIPAL, MAX_INPLANE_PRINCIPAL, MIN_INPLANE_PRINCIPAL, OUTOFPLANE_PRINCIPAL
TENSOR_2D_SURFACE11, 22, 12MAX_PRINCIPAL, MIN_PRINCIPAL, MAX_INPLANE_PRINCIPAL, MIN_INPLANE_PRINCIPAL
TENSOR_2D_PLANAR11, 22, 33, 12MISES, TRESCA, PRESS, INV3, MAX_PRINCIPAL, MID_PRINCIPAL, MIN_PRINCIPAL, MAX_INPLANE_PRINCIPAL, MIN_INPLANE_PRINCIPAL, OUTOFPLANE_PRINCIPAL

For example, the following statements add element data to the FieldOutput object:

# Write stress tensors (output only available at 
# top/bottom section points)
# The element defined above (S4) has 4 integration 
# points. Hence, there are 4 stress tensors per element.
# ABAQUS creates one layer of section points each
# time the script calls the addData method.

elementLabelData = (1, 2)

topData = ((1.,2.,3.,4.), (1.,2.,3.,4.),
           (1.,2.,3.,4.), (1.,2.,3.,4.),
           (1.,2.,3.,4.), (1.,2.,3.,4.),
           (1.,2.,3.,4.), (1.,2.,3.,4.),
          )
bottomData = ((1.,2.,3.,4.), (1.,2.,3.,4.),
              (1.,2.,3.,4.), (1.,2.,3.,4.),
              (1.,2.,3.,4.), (1.,2.,3.,4.),
              (1.,2.,3.,4.), (1.,2.,3.,4.),
             )

transform = ((1.,0.,0.), (0.,1.,0.), (0.,0.,1.))

sField = frame1.FieldOutput(name='S',
    description='Stress', type=TENSOR_3D_PLANAR,
    componentLabels=('S11', 'S22', 'S33',
    'S12'), validInvariants=(MISES,))
sField.addData(position=INTEGRATION_POINT, 
    sectionPoint=spTop, instance=instance1, 
    labels=elementLabelData, data=topData, 
    localCoordSystem=transform)
sField.addData(position=INTEGRATION_POINT, 
    sectionPoint=spBot, instance=instance1,  
    labels=elementLabelData, data=bottomData, 
    localCoordSystem=transform)

# For this step, make this the default field for 
# visualization.

step1.setDefaultField(sField)
For a full description of the addData command, see addData, Section 30.3.3 of the ABAQUS Scripting Reference Manual.

As a convenience, localCoordSystem can be a single transform or a list of transforms. If localCoordSystem is a single transform, it applies to all values. If localCoordSystem is a list of transforms, the number of items in the list must match the number of data values.


8.6.5 Default display properties

The previous examples show how you can use commands to set the default field variable and deformed field variable. ABAQUS/CAE uses the default field variable setting to determine the variable to display in a contour plot; for example, stress. Similarly, the default deformed field variable determines the variable that distinguishes a deformed plot from an undeformed plot. Typically, you will use displacement for the default deformed field variable; you cannot specify an invariant or a component. The default variable settings apply for each frame in the step. For example, the following statements use the deformation 'U' as the default setting for both field variable and deformed field variable settings during a particular step:

field=odb.steps['impact'].frames[1].fieldOutputs['U']
odb.steps['impact'].setDefaultField(field)
odb.steps['impact'].setDefaultDeformedField(field)

You can set a different default field variable and deformed field variable for different steps. You will need to use a loop to set the defaults for each step. For example,

for step in odb.steps.values():
  step.setDefaultField(field)


8.6.6 Writing history output data

History output is output defined for a single point or for values calculated for a portion of the model as a whole, such as energy. Depending on the type of output expected, the historyRegions repository contains data from one of the following:

  • a node

  • an element, or a location in an element

  • a region

Note:  History data from an analysis cannot contain multiple points.

The output from all history requests that relate to a specified point is collected in one HistoryRegion object. You use the HistoryPoint constructor to create the point. For example,

point1 = HistoryPoint(element=instance1.elements[0])
For a full description of the HistoryPoint command, see HistoryPoint, Section 30.6.1 of the ABAQUS Scripting Reference Manual.

You then use the HistoryRegion constructor to create a HistoryRegion object:

step1 = odb.Step(name='step-1',  
    description='', domain=TIME, timePeriod=1.0)
h1 = step1.HistoryRegion(name='my history',
    description='my stuff',point=point1)
For a full description of the HistoryRegion command, see HistoryRegion, Section 30.7.1 of the ABAQUS Scripting Reference Manual.

You use the HistoryOutput constructor to add variables to the HistoryRegion object.

h1_u1 = h1.HistoryOutput(name='U1',
    description='Displacement', type=SCALAR)
h1_rf1 = h1.HistoryOutput(name='RF1',
    description='Reaction Force', type=SCALAR)

# Similarly for Step 2

step2 = odb.Step(name='step-2',  
    description='', domain=TIME, timePeriod=1.0)
h2 = step2.HistoryRegion(name='my history',
    description='my stuff', point=point1)
h2_u1 = h2.HistoryOutput(name='U1',
    description='Displacement', type=SCALAR)
h2_rf1 = h2.HistoryOutput(name='RF1',
    description='Reaction Force', type=SCALAR)

Each HistoryOutput object contains a sequence of (frameValue, value) sequences. The HistoryOutput object has a method (addData) for adding data. Each data item is a sequence of (frameValue, value). In a time domain analysis (domain=TIME) the sequence is (stepTime, value). In a frequency domain analysis (domain=FREQUENCY) the sequence is (frequency, value). In a modal domain analysis (domain=MODAL) the sequence is (mode, value).

You add the data values as time and data tuples. The number of data items must correspond to the number of time items. For example,

timeData = (0.0, 0.1, 0.3, 1.0)
u1Data = (0.0, 0.0004, 0.0067, 0.0514)
rf1Data = (27.456, 32.555, 8.967, 41.222)

h1_u1.addData(frameValue=timeData, value=u1Data)
h1_rf1.addData(frameValue=timeData, value=rf1Data)

# similar for step2

timeData = (1.2, 1.9, 3.0, 4.0)
u1Data = (0.8, 0.9, 1.3, 1.5)
rf1Data = (0.9, 1.1, 1.3, 1.5)

h2_u1.addData(frameValue=timeData, value=u1Data)
h2_rf1.addData(frameValue=timeData, value=rf1Data)