*createfbdsummarytable
Creates an FBD summary table or min/max table.
Syntax
*createfbdsummarytable freebodysection_ids=<value> subcase_ids=<value> data_strings=<value> num_strings=<value>
Type
HyperMesh Tcl Modify Command
Description
Creates an FBD summary table or min/max table.
This queries the GPF, Applied, SPC and MPC data from the result entity on a freebodysection.
Inputs
- freebodysection_ids=<value>
- The freebodysection entity IDs.
- subcase_ids=<value>
- The subcase info as an array. Values are specified as resultfile_id subcase_id step_id, with each list separated by a comma. For example: 1 1 0, 1 2 0, 2 1 0, 2 1 1.
- data_strings=<value>
- The ID of the string array that contains the additional input parameters. The string array is created using the *createstringarray command. This should always be set to 1.
- num_strings=<value>
- Integer indicating the size (number of strings) in the data_strings array.
Example
*createstringarray 9 "tolerance=0.00001" "resultid=1" "gpf=1" "appf=1" "spcf=1" "intf=1" "mpcf=1" "freenode=2" "minmax=0"
set fbdIds {1 2 3}
set scIds {1 1 0, 1 2 0, 2 1 0, 2 1 1}
*createfbdsummarytable $fbdIds $scIds 1 9
*createstringarray 9 "tolerance=0.00001" "resultid=1" "gpf=1" "appf=1" "spcf=1" "intf=1" "mpcf=1" "freenode=2" "minmax=1"
set fbdIds {1 2 3}
set scIds {1 1 0, 1 2 0, 2 1 0, 2 1 1}
*createfbdsummarytable $fbdIds $scIds 1 9
Errors
if { [ catch {command_name...} ] } {
# Handle error
}
Version History
2019.1