You are on page 1of 3

AAE 320 - Introduction to PATRAN and ABAQUS

Lab. 4: Modal analysis of a plate

1. Introduction and objectives

The objective of the lab is to obtain the first five natural vibration modes of a 2D cantilever plate with
ABAQUS and PATRAN. We will use PATRAN only as the pre-processor. We will use the *FREQUENCY
feature of ABAQUS to get the mode shapes and will use ABAQUS/Post to visualize them.

The new concepts introduced in this lab are:


- basic commands for a simple modal analysis
- some new commands with ABAQUS/Post

The plate geometry is described in Figure 1.

1m

0.5 m

Figure 1

Our objective is to obtain the frequency and the deformed shape associated with the first five natural
vibration modes of the plate which has the following material properties:

Young’s modulus E = 206.8 GPa


Poisson’s ratio ν = 0.3
Density ρ = 7827 kg/m3
Thickness t = 1 mm

2. Pre-processing with PATRAN

The mesh generation step is very simple. Use 8-node quadrilateral plate (shell) elements. Use a simple
regular 10*5 mesh (Figure 2). The only “load” conditions you need to apply are the fixed displacements and
rotations on the right-hand side of the domain. When you enter the material properties, don’t forget the
density. Since there is only one surface, you don’t need to perform an “equivalence” operation. However,
you must optimize your mesh numbering. When you define your element properties, don’t forget to enter the
appropriate thickness (1 mm).

Finally, since we are going to run ABAQUS “manually”, select Analysis Deck (instead of Full Run) in the
uAnalysis step. At this point, leaves the Solution Type as Linear Static. We will modify the ABAQUS

1
input file directly later.

Figure 2: Finite element mesh for plate vibration problem.

When you are done, exit PATRAN.

3. Solving with ABAQUS

Before running ABAQUS, we must make a few modifications to the input file (‘prefix.inp’)

- to simplify the output file, enter, just after the title (i.e., on the third line of the ‘.inp’ file)
*PREPRINT,MODEL=NO,HISTORY=NO

- replace *STATIC by the following two lines


*FREQUENCY
5 (since we want to compute the first 5 natural frequencies)

- remove lines starting with *CLOAD and *DLOAD

- the end of the file, which contains all the information relative to the requested output, should look like this
*NODE PRINT, FREQ=0 (this turns off the nodal output)
*EL PRINT, FREQ=0 (this turns off the element output)
*MODAL FILE (to write the eigenvalues in the output file)
*RESTART, WRITE (to create the file needed for ABAQUS/Post)
*END STEP

Run ABAQUS with the usual command


abaqus job=<enter the prefix of the input file>

After you get the solution (wait to get the “Job completed” message from ABAQUS), check the result file
(‘.dat’) to get the values of the first five natural frequencies. Note that it also provides the location of the
centroid of the structure and the values of the moments and products of inertia.

4. Post Processing with ABAQUS

Start ABAQUS/Post with


abaqus post restart=<enter the prefix of the restart file>

2
First, we want to change the view to better visualize the deformed shapes
view, rot = (0,0,225) (rotation of 225 degrees about the z-axis)
view, rot = (30) (rotation about x)
view, rot = (0,-30) (rotation about y)
Then, enter
set, eigen = 1 (or 2 or 3 or 4 or 5) to specify the eigenmode.
draw, displaced
and the eigenmode will appear on the screen. Note the value of the corresponding eigenvalue.

To obtain an animation of, say, the second eigenmode, enter the following commands
set,eig=2
draw
set,capture=mode2.flc
sequence,mode,frames=20 (this might take a little while...)
set,capture=close
animate, file=mode2.flc

Exercise

As an exercise, we will recreate the mesh of the reinforced plate of Lab 3 and find the natural frequencies.
To recreate the mesh we will play the session file as follows:

File... Session... Play


Select the appropriate session file. (make sure to move the session file to the scratch directory)

The session file is a list of the commands used during that particular PATRAN “session”. As such, it contains
all of the steps performed (including the incorrect ones). A major advantage associated with the session files
is that they are very small compared to the PATRAN database file. However, if the session file is large, it
may take a while to run through the entire file.

You will notice that as the file plays several errors are encountered when the Analysis and Results steps are
performed. This happens because PATRAN is trying to read and display results before a results file is
present. When these errors occur, simply click OK since we are not interested in the static displacements.

After the session file is finished running, you will probably be left without a viewport, or you will be dumped
out of PATRAN altogether. Since PATRAN plays all commands in the session file, it played the File... Quit
or the File... Close command last. If you want to avoid that, just edit the end of the session file.

Now that we have the database file, we need to perform the following modifications in order to perform the
modal analysis.

In Load/BCs delete the pressure load


In Load Cases delete all but the Default load case
In Fields delete all fields
In Materials, add the density to the list of material properties
Redefine the element properties with the modified material properties.

Make sure that ABAQUS is selected as the analysis code in Preferences/Analysis. From here the analysis is
the same as in the example above.

You might also like