![]() |
Dakota Reference Manual
Version 6.4
Large-Scale Engineering Optimization and Uncertainty Analysis
|
Selects custom-annotated tabular file format
This keyword is related to the topics:
Alias: none
Argument(s): none
Default: annotated format
Required/Optional | Description of Group | Dakota Keyword | Dakota Keyword Description | |
---|---|---|---|---|
Optional | header | Enable header row in custom-annotated tabular file | ||
Optional | eval_id | Enable evaluation ID column in custom-annotated tabular file | ||
Optional | interface_id | Enable interface ID column in custom-annotated tabular file |
A custom-annotated tabular file is a whitespace-separated text file typically containing row data for variables, or variables followed by responses, though the format is used for other tabular exports/imports as well. Custom-annotated allows user options for whether header
row, eval_id
column, and interface_id
column appear in the tabular file, thus bridging freeform
and (fully) annotated
.
Default Behavior
The annotated
format is the default for tabular export/import. To control which header row and columns are in the input/output, specify custom_annotated
, followed by options, in the relevant export/import context.
Usage Tips
annotated
format, though freeform
remains an option.freeform
option.Export a custom-annotated tabular file in Dakota 6.0 format, which contained only header and eval_id (no interface_id), and data for variables and responses. Input file fragment:
environment tabular_data tabular_data_file = 'dakota_summary.dat' custom_annotated header eval_id
Resulting tabular file:
%eval_id x1 x2 obj_fn nln_ineq_con_1 nln_ineq_con_2 1 0.9 1.1 0.0002 0.26 0.76 2 0.90009 1.1 0.0001996404857 0.2601620081 0.759955 3 0.89991 1.1 0.0002003604863 0.2598380081 0.760045 ...