ProductsAbaqus/StandardAbaqus/Explicit Combining data for models with more than two substructuresBecause the abaqus substructurecombine utility combines data from only two output databases at a time, you must run the utility multiple times to create a single output database from an analysis with more than two substructures. Combine data from two of the substructures first, then repeat the operation to combine the resulting output database file with data from each remaining substructure. Customizing the combined output databaseYou can customize the substructure combine operation by adding only a subset of the data from the copy output database into the base output database. Abaqus enables you to add output data to the base output database from a single step or frame in the copy output database. You can also include only output data from the copy output database that relates to a particular variable; for example, you can copy output data related to Mises stress. Command summaryabaqus
substructurecombinebaseodbodb-file-name
copyodbodb-file-name
all
stepstep-name
frameframe-number
variablevariable-key
Command line options
ExamplesThe following examples illustrate different methods of combining substructures using the abaqus substructurecombine execution procedure. Combining two substructuresIf your model contains two substructures that produce output database files named subst1.odb and subst2.odb, issue the following command to overwrite subst1.odb with the combined contents of the two files: abaqus substructureCombine baseodb=subst1.odb copyodb=subst2.odb Combining more than two substructuresIf your model contains more than two substructures, you must first combine the output database files from two of the substructures, then combine the combined output database with each of the other substructures' output databases in turn. In this example the substructure analysis produces four output database files named subst1.odb, subst2.odb, subst3.odb and subst4.odb, so you must issue the abaqus substructure command a total of three times to combine all four files into a single output database, as shown in the following example: abaqus substructureCombine baseodb=subst1.odb copyodb=subst2.odb abaqus substructureCombine baseodb=subst1.odb copyodb=subst3.odb abaqus substructureCombine baseodb=subst1.odb copyodb=subst4.odb Combining specific elements of the substructuresIf you want to include only the output data from the step Step-1 in the combined output database, issue the following command: abaqus substructureCombine baseodb=subst1.odb copyodb=subst2.odb step="Step-1" If you want to include only the output data from the Mises variable in the combined output database, issue the following command: abaqus substructureCombine baseodb=subst1.odb copyodb=subst2.odb variable="Mises" |