Contains an individual analysis detail consisting of a name, value, and units.
The number of analysis details stored in an AnalysisResult must be constant for each analysis. For example, for stiffener crippling you may wish to output data for each object of the stiffener (foot, web, cap). However, the number of objects is dependent on the concept (I-concepts have a foot, web, and cap, T-concepts have only a foot and web). In this case you must defined details for all 3 objects regardless of the concept type. The source code template has a example of this scenario.
Field | Type | Description |
---|---|---|
Name | char[20] | Variable name |
Value | float | Variable value. |
Units | int (Units) | If Units = Units_Text, the value is the index of the TextTable. |
Method | Parameters | Return Type | Description |
---|---|---|---|
SetValue | bool value | void | Casts the value to a float and stores the value. |
SetValue | double value | void | Stores the value. |
SetValue | float value | void | Casts the value to a float and stores the value. |
Referenced by: AnalysisResult