Scalar Parameter Tags in the Design Template FileA scalar parameter tag in the fast parser design template file indicates the location of a scalar parameter in the runtime text file. The format of the tags is as follows:
The following example is a template file created by modifying the data (.dat) file generated by an Abaqus/Standard analysis: MAXIMUM !<MaxS11%8.4f!1.825>! -47.28 1.4645E-02 1.6791E-04 0.7144 1.0533E+04 1.8244E+04 ELEMENT 42 1 1 69 41 41 41 In the section of the data file containing element output, the tag operates on the text containing the MaxS11 scalar parameter:
Range Tags in the Design Template FileRange tags in the fast parser design template file specify a range of values in the runtime text file from which the parser extracts the value of a scalar parameter value, such as the maximum value. Range tags are used only for reading data from the runtime text file. The format of the tags is as follows:
The following example is a template file created by modifying the data (.dat) file generated by an Abaqus/Standard analysis: MAXIMUM !<[MAXABS]Sii%10f! 1.825>! !<[MAXABS]Sii%10f!-47.28>! !<[MAXABS]Sii%10f!1.4645E-02>! 1.6791E-04 0.7144 1.0533E+04 1.8244E+04 In the section of the data file containing element output, the tag operates on the text containing the maximum stress values, S11, S22, and S33.
Array Parameter Tags in the Design Template FileAn array parameter tag in the fast parser design template file indicates the location of an array parameter in the runtime text file with columnar data. The format of the tags is as follows:
The following example is a template file created by modifying the data (.dat) file generated by an Abaqus/Standard analysis: THE FOLLOWING TABLE IS PRINTED FOR ALL ELEMENTS WITH TYPE C3D8R AT THE INTEGRATION POINTS ELEMENT PT S11 S22 S33 S12 S13 S23 MISES 1 1 !<S11(1#80)%8.4f!-3.199>! -47.28 1.4645E-02 -2.9242E-05 -0.7139 1.0533E+04 1.8244E+04 In the section of the data file containing element output, the tag operates on the column of text containing the S11 array parameter:
Markers in the Design Template FileMarkers in the design template file serve as anchors for your tags and allow you to read or write data from or to the data file when the exact content of the file cannot be predicted. You create a marker in the template file and follow the marker with tags indicating data to read from the data file. The format of the marker is as follows:
In the following example, when the fast parser first encounters the text within the marker, ELEMENT PT S11 S22 S33 S12 S13 S23 MISES, the following tag tells the parser to read (or write) 80 lines of data from the third column from (or into) the S11 array parameter. THE FOLLOWING TABLE IS PRINTED FOR ALL ELEMENTS WITH TYPE C3D8R AT THE INTEGRATION POINTS !<MARK_;1!ELEMENT PT S11 S22 S33 S12 S13 S23 MISES>! 1 1 !<S11(1#80)%8.4f!-3.199>! -47.28 1.4645E-02 -2.9242E-05 -0.7139 1.0533E+04 1.8244E+04 |