Guide for Preparing Input Files#

In PreVABS, a cross section is defined through two aspects: components and global configuration, as shown in Fig. 30. Components are built from geometry and materials. The geometry aspect comprises definitions of base points and base lines. The material aspect includes material properties, lamina thicknesses, layup stacking sequences, etc. The global configuration contains the files included, transformation, meshing options, and analysis settings.

../../_images/chart1.png

Figure 30 Cross section definition in PreVABS.#

To create the cross section, at least four input files are needed. Definitions of the geometry, materials and layups are stored in three files separately. A top level cross section file stores the definitions of components and global configurations. In some cases, a separate file storing base points is needed (such as an airfoil). Except the base points file, which has a file extension .dat, all other files use an XML format.

A top level cross section file stores all information that will be discussed in the following sections. The input syntax for this main file is shown in Listing 35.

Listing 35 Input syntax for the cross section file.#
 1<cross_section name="" format="">
 2  <include>...</include>
 3  <analysis>...</analysis>
 4  <general>...</general>
 5  <baselines>...</baselines>
 6  <layups>...</layups>
 7  <component>...</component>
 8  <component>...</component>
 9  ...
10</cross_section>

Data of geometry and layup can be arranged in two ways, controlled by the attribute format:

  • If omitted or set to 0, then the code will look for definitions of shapes and layups in separated files, specified in the element <include>.

  • If set to 1, then the code will look for the definitions in the current main input file.

Specification

  • <cross_section>

    • name - Name of the cross-section.

    • format - Format of the input file. See explaination above.

  • <include> - File names of separately stored data.

  • <analysis> - Configurations of cross-sectional analysis.

  • <general> - Overall settings of the cross-section.

  • <baselines> - Definitions of geometry and shape.

  • <layups> - Definitions of layups.

  • <component> - Definitions of cross-sectional components.

  • <recover> - Inputs for recovery.