ProductsAbaqus/StandardAbaqus/Explicit Keyword linesThe following rules apply when entering a keyword line:
Data linesData 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:
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). The data lines you specify must be consistent with the value of the TYPE parameter given on the ELASTIC option. SetsOne 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, 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. 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 and Element definition. LabelsLabels such as set names, surface names, and rebar names are case insensitive unless enclosed within quotation marks (except when they are accessed from user subroutines; see About user subroutines and utilities). Labels 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. 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 linesSome 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 dependenceAny 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
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:
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 linesWhenever 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 |