3.6.20 · D4Spacecraft Structures & Systems Engineering

Exercises — FEM software — NASTRAN, ABAQUS (concepts and use)

2,934 words13 min readBack to topic

Level 1 — Recognition

Exercise 1.1 (L1)

In the NASTRAN input deck below, match each card to its job.

SOL 103
EIGRL,1,,,10
CQUAD4,1,1,2,3,4
MAT1,1,70.E9,,2700
SPC1,10,123456,1
Recall Solution
  • SOL 103 ::: selects the solution sequence; 103 is modal (natural-frequency) analysis.
  • EIGRL,1,,,10 ::: the Lanczos eigenvalue solver, method set 1, asking for 10 modes.
  • CQUAD4 ::: a 4-node shell element, ideal for thin plate-like structures.
  • MAT1,1,70.E9,,2700 ::: an isotropic material: Young's modulus Pa, density kg/m³.
  • SPC1,10,123456,1 ::: a single-point constraint fixing all 6 DOF (digits 1-2-3-4-5-6) at node 1 — a clamp.

Exercise 1.2 (L1)

For each scenario, name the analysis type (Linear Static / Modal / Frequency Response / Random Vibration) and whether NASTRAN or ABAQUS is the natural first choice.

(a) Find whether a solar-panel deflects too far under a steady 2 g acceleration. (b) Find the first bending frequency of a bracket to dodge a launcher's tone. (c) Predict delamination in an 8-ply carbon panel under compression. (d) Predict RMS stress from a broadband launch shaker environment.

Recall Solution

(a) ::: Linear Static (), NASTRAN. Steady load, no material nonlinearity. (b) ::: Modal, NASTRAN. The governing equation is , where (defined in the alphabet above) is the mode shape vector — the pattern in which the structure sways at natural frequency . See Vibration and Modal Analysis. (c) ::: Nonlinear progressive-failure, ABAQUS. Hashin damage is material nonlinearity — see Composite Materials. (d) ::: Random Vibration (PSD), NASTRAN. See Launch Vehicle Loads.


Level 2 — Application

Exercise 2.1 (L2)

A single spring has stiffness N/m. Treated as a 1-DOF finite-element model, . Apply N. Solve for the displacement.

Recall Solution

What: the global system collapses to one number. Why: with one DOF the displacement vector has a single entry, so we write it as plain , and is just .

Exercise 2.2 (L2)

A bolt is torqued to N·m. Diameter mm m, nut factor . Using , find the preload force .

Recall Solution

Why this formula: torque you apply at the wrench spreads into three jobs — stretching the bolt, thread friction, under-head friction. The empirical nut factor bundles all three so that links the twist you feel to the tension inside the bolt. This is the *CLOAD preload in the parent's bolted-joint example.

Exercise 2.3 (L2)

A NASTRAN modal run reports the first mode at angular frequency rad/s. Convert to ordinary frequency in hertz.

Recall Solution

Why divide by : one full cycle is radians, so cycles-per-second radians-per-second . Matches the parent's L-bracket first bending mode.


Level 3 — Analysis

Exercise 3.1 (L3)

Two identical springs (each N/m) are joined in series between a wall and a free tip. Node 1 is at the wall (fixed), node 2 is the junction, node 3 is the free tip where a force N is applied. Assemble the stiffness matrix, apply the boundary condition at node 1, and solve for the tip displacement .

Figure — FEM software — NASTRAN, ABAQUS (concepts and use)
Recall Solution

Step 1 — element matrices (WHAT & WHY). A single spring between DOFs contributes The on the diagonal means "pushing a node stiffens it"; the off-diagonal means "moving one end drags the other".

Step 2 — assemble into the global grid. Spring A links nodes 1–2, spring B links nodes 2–3. Overlap them at the shared node 2 (this is what "assembly" is — look at the middle diagonal in the figure where the two matrices pile up):

Step 3 — apply the wall (boundary condition). Node 1 is clamped, so . We delete row/column 1, leaving a system in :

Step 4 — solve. From the two equations and : the first gives ; substitute: m, so m mm.

Sanity check (WHAT IT MEANS): two springs in series are softer — effective stiffness N/m, so m. Same answer. Springs in series stretch more, exactly like the tip in the figure overshooting the single-spring case.

Exercise 3.2 (L3)

In the composite panel of the parent note, a fiber-tension check uses the Hashin form A ply carries MPa and MPa. Strengths: MPa, MPa, and . Compute the failure index and state whether the ply fails.

Recall Solution

Why this form: each squared term is "how close a stress is to its own limit". Summing them asks "combined, have we reached 100% of capacity?" A value means failure has initiated. , so the ply has not yet failed — it sits at 85% of the Hashin criterion. See Stress Analysis and Margins for turning this into a margin.


Level 4 — Synthesis

Exercise 4.1 (L4)

A first modal run on a bracket gives Hz. The launcher's dominant tonal excitation sits at Hz — dangerously close. You must raise above Hz by stiffening. For a simple mode, where is effective stiffness and effective mass. If you can add a rib that raises but leaves essentially unchanged, by what factor must increase?

Recall Solution

Why : a mode behaves like a mass-spring oscillator; its frequency is . Doubling stiffness raises frequency by , not by 2 — the square root is the whole story.

Set up the ratio. With fixed: Plug in the target , : You must raise effective stiffness by about 38%. This is a classic Vibration and Modal Analysis design decision to escape a resonance identified in Launch Vehicle Loads.

Exercise 4.2 (L4)

You must choose an analysis campaign for a deployable boom that folds through 90° of rotation, uses carbon-fiber tape springs, and latches with frictional contact. List, in order, the modelling decisions (analysis type, geometric setting, material model, contact) and justify each in one line.

Recall Solution
  • Analysis type ::: nonlinear static (Riks/arc-length) — the boom snaps through unstable configurations; arc-length follows the equilibrium path past the peak load where ordinary load-stepping diverges.
  • Geometric setting ::: NLGEOM=YES (large deformation) — a 90° rotation is nowhere near "small", so linear geometry would grossly mis-predict stiffness. Choose ABAQUS.
  • Material model ::: orthotropic composite (Hashin damage) — carbon tape has direction-dependent stiffness and its own failure modes; see Carbon Fiber Structures and Composite Materials.
  • Contact ::: friction pair at the latch — without friction the latch cannot hold; model a friction coefficient so the mechanism locks. See the bolted-joint example in the parent.

Level 5 — Mastery

Exercise 5.1 (L5)

A nonlinear ABAQUS step uses Newton–Raphson. At iteration the internal force is (a stiffening spring, scalar 1-DOF), and the external load is . Starting from , perform one Newton–Raphson update and report . (Tangent stiffness .)

Recall Solution

Why iterate at all: is nonlinear — there's no one-shot matrix inverse. Newton–Raphson linearizes locally, takes a step, and repeats. The exact root is (since ); watch the iteration march toward it.

Step 1 — residual (the imbalance we want to kill), external minus internal: Step 2 — tangent stiffness at the guess: Step 3 — solve the correction : Step 4 — update: What it means: one step overshoots ( vs true ) because the cubic curves sharply, but the next iterations will pull it back — convergence is fast (quadratic) once close.

Exercise 5.2 (L5)

Continue Exercise 5.1: perform a second Newton–Raphson iteration from and report . Comment on convergence toward the true root .

Recall Solution

Residual (external minus internal): . Tangent: . Correction: . Update: . Comment: we moved from , closing on the true root . The residual sign flipped (overshoot then correct), which is normal for Newton on a stiffening curve; a real ABAQUS run keeps iterating until . See Model Correlation for how such solver output is then matched to Ground Test Procedures data.

Exercise 5.3 (L5)

A linear-static stress result gives a peak von-Mises stress MPa in a joint whose material allowable is MPa. Compute the margin of safety and state whether the joint passes. Then re-check with a required factor of safety applied to the load (i.e. design stress ).

Recall Solution

Reminder — what FoS means: the factor of safety (FoS) is a multiplier you deliberately apply to the load so the structure is designed stronger than the loads it will actually see; means "design for 25% more load than expected".

Why MoS is defined this way: the margin of safety (MoS) answers "how much extra capacity beyond what's used?" means "exactly at the limit"; positive means room to spare; negative means failure.

Without FoS: With FoS = 1.25 applied to the load, the design stress becomes MPa, and we compare that against the unchanged material allowable: The joint survives even with the safety factor, matching the parent's "joint is safe" conclusion. See Stress Analysis and Margins.


Recall One-line self-test (cover the answers)

Modal solution number in NASTRAN? ::: SOL 103. Card that clamps all 6 DOF at a node? ::: SPC1 with digits 123456. Why is a fully-free stiffness matrix singular? ::: rigid-body modes — the structure can float, so no unique solution. Frequency scales with which power of stiffness? ::: the square root, . Newton–Raphson correction equation? ::: , with . Margin of safety formula? ::: . What does stand for in modal analysis? ::: the mode shape vector — the pattern of motion at a natural frequency.