Difference between revisions of "Controlling FEA Output"

From OSUPDOCS
Jump to navigation Jump to search
(Created page with "If FEA files, the <tt>Output<tt> command defines which results are written to the output text file. Some of the output options can be restricted to selected nodes.")
 
Line 1: Line 1:
If FEA files, the <tt>Output<tt> command defines which results are written to the output text file. Some of the output options can be restricted to selected nodes.
If FEA files, the <tt>Output</tt> command defines which results are written to the output text file. Some of the output options can be restricted to selected nodes.
 
== Scripted Input Files ==
 
The <tt>Output</tt> command is used to determine what FEA calculation results are in the output file. The format is
<pre>Output #1,#2,&lt;#3,#4&gt;,&lt;#5,#6&gt;,...</pre>
where the arguments are given in pairs: (#1,#2), (#3,#4), <i>etc</i>.; the first number gives a calculation result. The options are:
 
# <tt>&quot;displacements&quot;</tt> to output nodal displacements.
#<tt>&quot;forces&quot;</tt> to output nodal forces calculated in each element.
#<tt>&quot;elementstresses&quot;</tt> to output all components of stress calculated in each element and surface tractions in each <a href="imperfect.html">interface</a> elements.
#<tt>&quot;nodalstresses&quot;</tt> to output average stresses at the nodal points.
#<tt>&quot;reactivities&quot;</tt> to output reaction forces at all nodes with fixed boundary conditions.
#<tt>&quot;energy&quot;</tt> to output strain energy of each element and the total strain energy.
 
Each output option is followed by an option that determines what is included in the option file. These options are:
 
* <tt>&quot;yes&quot;</tt> means fully output the preceding option. Fully option means to output all nodal results are all element results.
* <tt>&quot;no&quot;</tt> means to completely omit the preceding option.
* <tt>&quot;selected&quot;</tt> means to only output result relevant to selected nodes, which are selected as described [[#Selecting Nodes|below]]. If no nodes are selected, this mode will result in no output for that option.
 
==== Selecting Nodes ====
 
You can select nodes for any output option using the <tt>&quot;selected&quot;</tt> style with the following commands:
 
== XML Input Files ==
 
The <tt>Output</tt> and <tt>Select</tt> commands are used to determine what FEA calculation results are in the output file. The format within the [[FEA Input Files#Main Header|main header]] is:
 
<pre><Output>YYYYNY</Output>
<Select node='1'/>
<Select node='23'></pre>
 
The text of the <tt>Output</tt> command has 1 to 6 letters, each of which must be 'Y', 'C', or 'N'. A 'Y' means that result is fully included in the file. A 'C' means that result is conditionally included only if it is relevant to one of a set of preselected nodes. A 'N' means that result is not included in the file. The six output options are listed [[#Scripted Input Files|above]].

Revision as of 11:50, 28 May 2013

If FEA files, the Output command defines which results are written to the output text file. Some of the output options can be restricted to selected nodes.

Scripted Input Files

The Output command is used to determine what FEA calculation results are in the output file. The format is

Output #1,#2,<#3,#4>,<#5,#6>,...

where the arguments are given in pairs: (#1,#2), (#3,#4), etc.; the first number gives a calculation result. The options are:

  1. "displacements" to output nodal displacements.
  2. "forces" to output nodal forces calculated in each element.
  3. "elementstresses" to output all components of stress calculated in each element and surface tractions in each <a href="imperfect.html">interface</a> elements.
  4. "nodalstresses" to output average stresses at the nodal points.
  5. "reactivities" to output reaction forces at all nodes with fixed boundary conditions.
  6. "energy" to output strain energy of each element and the total strain energy.

Each output option is followed by an option that determines what is included in the option file. These options are:

  • "yes" means fully output the preceding option. Fully option means to output all nodal results are all element results.
  • "no" means to completely omit the preceding option.
  • "selected" means to only output result relevant to selected nodes, which are selected as described below. If no nodes are selected, this mode will result in no output for that option.

Selecting Nodes

You can select nodes for any output option using the "selected" style with the following commands:

XML Input Files

The Output and Select commands are used to determine what FEA calculation results are in the output file. The format within the main header is:

<Output>YYYYNY</Output>
<Select node='1'/>
<Select node='23'>

The text of the Output command has 1 to 6 letters, each of which must be 'Y', 'C', or 'N'. A 'Y' means that result is fully included in the file. A 'C' means that result is conditionally included only if it is relevant to one of a set of preselected nodes. A 'N' means that result is not included in the file. The six output options are listed above.