1.2.1 Input syntax rules

Products: ABAQUS/Standard  ABAQUS/Explicit  

Reference

Overview

This section describes the syntax rules that govern an ABAQUS input file.

All data definitions in ABAQUS are accomplished with option blocks—sets of data describing a part of the problem definition. You choose those options that are relevant for a particular application. Options are defined by lines in the input file. Three types of input lines are used in an ABAQUS input file: keyword lines, data lines, and comment lines. A carriage return is required at the end of each line in an input file.

  • Keyword lines introduce options and often have parameters, which appear as words or phrases separated by commas on the keyword line. Parameters are used to define the behavior of an option. Parameters can stand alone or have a value, and they may be required or optional.

  • Data lines, which are used to provide numeric or alphanumeric entries, follow most keyword lines.

  • Any line that begins with stars in columns 1 and 2 (**) is a comment line. Such lines can be placed anywhere in the file. They are ignored by ABAQUS, so they will be printed only in the initial listing of the file. There is no restriction on how many or where such lines occur in the file.

Relevant parameters and data lines (including the number of entries per data line) are described in the sections of the ABAQUS Keywords Reference Manual describing each option. This section describes the general rules that apply to all keyword and data lines.

Keyword lines

The following rules apply when entering a keyword line:

  • The first non-blank character of each keyword line must be a star (*).

  • The keyword must be followed by a comma (,) if any parameters are given.

  • Parameters must be separated by commas.

  • Blanks on a keyword line are ignored.

  • A line can include no more than 256 characters, including blanks.

  • Keywords and parameters are not case sensitive.

  • Parameter values usually are not case sensitive. The only exceptions to this rule are those imposed externally to ABAQUS, such as file names on case-sensitive operating systems.

  • Keywords, parameters, and, in most cases, parameter values need not be spelled out completely, but there must be enough characters given to distinguish them from other keywords, parameters, and parameter values that begin in the same way. ABAQUS first searches each associated text string for an exact match. If an exact match is not found, ABAQUS then searches based upon the minimum number of unique characters in each keyword, parameter, or parameter value, as the case may be. Embedded blanks can be omitted from any item in a keyword line. If a parameter value is used to provide a number or a file name, the complete value should be provided.

  • If a parameter has a value, the equal sign (=) is used. The value can be an integer, a floating point number, or a character string, depending on the context. For example,

    *ELASTIC, TYPE=ISOTROPIC, DEPENDENCIES=1

  • Continuation of a keyword line is sometimes necessary; for example, because of a large number of parameters. If the last character on a keyword line is a comma, the next line is interpreted as a continuation of the line. For example, the *ELASTIC keyword line above could also be given as

    *ELASTIC, TYPE=ISOTROPIC,
    DEPENDENCIES=1

  • Some options allow the INPUT or FILE parameter to be set equal to the name of an alternate file. Such file names can include a full path name or a relative path name. Relative path names must be with respect to the directory from which the job was submitted. If no path is specified, the file is assumed to be in the directory from which the job was submitted. A substructure library must be in the same directory from which the job was submitted; a full path name cannot be used to specify a substructure library name.

    For files referenced by the INPUT parameter, the file name must include any extension (e.g., elem.inp). For files referenced by the FILE parameter, the name must be given without an extension in most cases since ABAQUS assumes that the file to be read has the correct extension for the file type that is relevant to the option: .res for restart files (Restarting an analysis, Section 9.1.1) and .fil for results files (Output, Section 4.1.1). However, special rules may apply when a results file (.fil) or an output database file (.odb) is relevant for the option (see Initial conditions, Section 27.2.1, and Sequentially coupled thermal-stress analysis, Section 6.5.3, for details).

    The file or substructure library name must have the correct case on computers with case-sensitive operating systems. Regardless of whether the user specifies only a file name, a relative path name, or a full path name, the complete name including the path can have a maximum of 80 characters.

Data lines

Data lines are used to provide data that are more easily given in lists than as parameters on an option. Most options require one or more data lines; if they are required, the data lines must immediately follow the keyword line introducing the option. The following rules apply when entering a data line:

  • A data line can include no more than 256 characters, including blanks. Trailing blanks are ignored.

  • All data items must be separated by commas (,). An empty data field is specified by omitting data between commas. ABAQUS will use values of zero for any required numeric data that are omitted unless a default value is specified. If a data line contains only a single data item, the data item should be followed by a comma to distinguish the data line from a fixed format data line used in previous versions of ABAQUS.

  • A line must contain only the number of items specified.

  • Empty data fields at the end of a line can be ignored.

  • Floating point numbers can occupy a maximum of 20 spaces including the sign, decimal point, and any exponential notation.

    Floating point numbers can be given with or without an exponent. Any exponent, if input, must be preceded by E or D and an optional (–) or (+). The following line shows four acceptable ways of entering the same floating point number:

    -12.345    -1234.5E-2   -1234.5D-2   -1.2345E1

  • Integer data items can occupy a maximum of 9 digits.

  • Character strings can be up to 80 characters long and are not case sensitive.

  • Continuation lines are allowed in specific instances (see Element definition, Section 2.2.1). If allowed, such lines are indicated by a comma as the last character of the preceding line. A single data item cannot be entered over multiple lines.

In many cases the choice of parameters used with an option determines the type of data lines required. For example, there are five different ways to define a linear elastic material (Elastic behavior: overview, Section 17.1.1). The data lines you specify must be consistent with the value of the TYPE parameter given on the *ELASTIC option.

Sets

One of the most useful features of the ABAQUS data definition method is the availability of sets. A set can be a set of nodes or a set of elements. You provide a name (1–80 characters, the first of which must be a letter) for each set. That name then provides a means of referencing all of the members of the set. As an example suppose that, for the structure shown in Figure 1.2.1–1, we wish to apply symmetry boundary conditions at all of the nodes in the set MIDDLE and that the edge SUPPORT is pinned.

Figure 1.2.1–1 Example of the use of sets.

We assemble the relevant nodes into sets and specify the boundary conditions by
*BOUNDARY
 MIDDLE, ZSYMM
 SUPPORT, PINNED
Sets are the basic reference throughout ABAQUS, and the use of sets is recommended. Choosing meaningful set names makes it simple to identify which data belong to which part of the model. Further discussion of sets is provided in Node definition, Section 2.1.1, and Element definition, Section 2.2.1.

Labels

Labels such as set names, surface names, and rebar names are case insensitive (except when they are accessed from user subroutines; see User subroutines: overview, Section 13.2.1) and can be up to 80 characters long. All spaces within a label are ignored unless the label is enclosed in quotation marks, in which case all spaces within the label are maintained. A label that is not enclosed within quotation marks must begin with a letter, may not include a period (.), and should not contain characters such as commas and equal signs. These restrictions do not apply to labels enclosed within quotation marks except if the label is a material name. A material name must always start with a letter, even if the name is enclosed within quotation marks.

If a label is defined using quotation marks, the quotation marks are stored as part of the label. Any subsequent use of the label should also be enclosed in quotation marks. Embedded quotation marks are not allowed.

Labels cannot begin and end with a double underscore (e.g., __STEEL__). This label format is reserved for internal use by ABAQUS.

The following are examples of labels entered with and without the use of quotation marks:

*ELEMENT, TYPE=SPRINGA, ELSET="One element"
1,1,2
*SPRING, ELSET="One element"
1.0E-5,
*NSET, ELSET="One element", NSET=NODESET
*BOUNDARY
nodeset,1,2

Repeating data lines

Some options list only a single data line. In cases where only one data line is allowed, this is indicated by the data line title “First (and only) line.” An example of this is the *DYNAMIC option. In many cases the single data line shown can be repeated to define one variable as a function of another; this choice is indicated by a note after the data line. For example, a table of biaxial test data can be given to define a hyperelastic material:

*BIAXIAL TEST DATA 
,  
,  
,  
Etc.
There is no limit on the number of data lines allowed, but the data must be given in a certain order, as explained below.

Many options require more than one data line; these are indicated by the data line titles “First line:”, “Second line:”, etc. For example, exactly two data lines must be used to define a local orientation for a shell element (*ORIENTATION), and at least three data lines are required to define anisotropic elasticity (*ELASTIC).

In many cases the data lines can be repeated, which is indicated by a note after the data lines. As with repetition of a single data line, it is important that sets of data lines be given in the correct order so that ABAQUS can interpolate the data properly.

Example: Multiple data lines due to field variable dependence

Any time an option can be defined as a function of field variables, you must determine the number of data lines required to define the option completely. (See Specifying field variable dependence” in “Material data definition, Section 16.1.2, for more information.) For example, two data lines are required if stress-based failure criteria (*FAIL STRESS) are defined as a function of two field variables. This pair of data lines is repeated as often as necessary to define the failure criteria completely:

(In this example the last field on the first data line of each pair was omitted, which means that the stress-based failure criteria are not temperature dependent.)

If the stress-based failure criteria were defined as a function of nine field variables, a set of three data lines would be repeated as often as necessary:

Ordering the data lines

Whenever one variable is defined as a function of another, the data must be given in the proper order so that ABAQUS can interpolate for intermediate values correctly. The variable being defined is assumed to be constant outside the range of independent variables given, except for nonlinear elastic gasket thickness behavior involving damage where the data are extrapolated based on the last slope computed from the user-specified data.

If the property being defined is a function of only one variable (such as the *BIAXIAL TEST DATA shown above), the data should be given in the order of increasing value of the independent variable.

If the property being defined is a function of multiple independent variables, the variation of the property with respect to the first variable must be given at fixed values of the other variables, in ascending values of the second variable, then of the third variable, and so on. The data lines must always be ordered so that the independent variables are given increasing values. This process ensures that the value of the material property is completely and uniquely defined at any values of the independent variables upon which the property depends.

As an example, consider isotropic elasticity defined as a function of three field variables (but not of temperature):

*ELASTIC, DEPENDENCIES=3
 , ,  , 1, 1, 1
 , ,  , 2, 1, 1
 , ,  , 1, 2, 1
 , ,  , 2, 2, 1
 , ,  , 1, 3, 1
 , ,  , 2, 3, 1
 , ,  , 1, 1, 2
 , ,  , 2, 1, 2
 , ,  , 1, 2, 2
 , , , 2, 2, 2
 , , , 1, 3, 2
 , , , 2, 3, 2
 , , , 1, 1, 3
 , , , 2, 1, 3
 , , , 1, 2, 3
 , , , 2, 2, 3
 , , , 1, 3, 3
 , , , 2, 3, 3