Probabilistic Design and Reliability | Module 9 of 10
Reliability-Based Design
Reliability-based design does not ask only whether a nominal constraint is satisfied. It asks whether the probability of violating the constraint is acceptable for the consequence.
Readiness check
Tick only what you can do closed-notes before using this module for design decisions.
- Write a deterministic design constraint.
- Compute a probability of failure from a normal margin.
- Explain a target reliability in words.
- Distinguish requirement, objective, and constraint.
- Run an independent check on a design result.
The core idea
A reliability-based constraint limits failure probability, not only nominal stress or deflection. A target reliability has meaning only with a defined failure mode, mission, consequence, and model basis.
deterministic: g(x_nominal) > 0chance constraint: P[g(X) <= 0] <= P_targetnormal margin: beta = mu_g / sigma_gReliability-based design moves probability into the design decision. A deterministic constraint might require stress below allowable stress at nominal values. A probabilistic constraint might require P(stress > strength) below 0.001 for a specified mission. The reliability index beta is a useful normal-margin measure, but it is not a magic universal safety score. Introductory first-order reliability methods approximate the limit-state surface near the important failure point. This course keeps FORM and SORM at awareness level and focuses on defensible design workflow: define the failure event, choose target reliability from consequence and context, design for the chance constraint, then verify with an independent simulation or analytical check. The target reliability is not meaningful without consequence. A removable panel clip and a lifting hook do not deserve the same target.
The skills, taught in order
Turn deterministic limits into chance constraints
Replace only the right constraints with probabilities and keep units visible.
Set targets from consequence
Higher consequence requires stronger evidence, lower allowable failure probability, and often independent review.
Use beta carefully
For normal margins, beta maps to failure probability. Outside that model, state what approximation is being used.
Design, then verify independently
A solver result should be checked by an independent Monte Carlo or analytical benchmark.
Report residual risk
Even accepted designs carry assumptions, exclusions, and remaining risk.
Engineering connection: use these skills to turn variability into a design decision, not just a plot.
Worked example 1: shaft redesign for target failure probability
A shaft design has a normal margin with mean 32 MPa and standard deviation 16 MPa, so beta = 2. The target is P_f <= 0.001, approximately beta >= 3.09 for a normal margin. If standard deviation stays 16 MPa, what mean margin is needed?
- ProblemA shaft design has a normal margin with mean 32 MPa and standard deviation 16 MPa, so beta = 2. The target is P_f <= 0.001, approximately beta >= 3.09 for a normal margin. If standard deviation stays 16 MPa, what mean margin is needed?
- AssumptionsThe margin remains approximately normal and scatter is unchanged by redesign.
- Modelbeta_target = mu_g / sigma_gmu_g_needed = beta_target sigma_g
- Solvemu_g_needed = 3.09 x 16 = 49.4 MPa. The design needs mean margin increased from 32 MPa to about 49 MPa, or scatter reduced, or both.
- CheckIncreasing mean margin may require larger diameter, better material, lower load, or geometry change. Reducing scatter may require tighter tolerances or better process control.
- ConclusionThe design must gain about 17 MPa of mean margin if scatter is unchanged.
Worked example 2: risk-informed target selection
Two failures have the same calculated P_f = 0.002. One is cosmetic cover cracking; the other is a lifting hook fracture. Should the same target reliability be used?
- ProblemTwo failures have the same calculated P_f = 0.002. One is cosmetic cover cracking; the other is a lifting hook fracture. Should the same target reliability be used?
- AssumptionsThe probability estimates are for the same mission length but consequences differ.
- Modelrisk = probability x consequence
- SolveNo. The lifting hook fracture has much higher consequence and needs a much lower target probability, stronger evidence, conservative assumptions, and likely standards or expert review.
- CheckProbability alone does not rank risk without consequence.
- ConclusionTarget reliability must be tied to failure mode and consequence.
Python activity
Engineering question: Search candidate shaft diameters for a target Monte Carlo failure probability.
Assumptions and units: Use the units shown in the code comments. Keep the random seed fixed while learning so the result is reproducible.
from math import pi
from random import Random
rng = Random(31)
n = 150_000
torque_samples = [rng.gauss(420_000.0, 40_000.0) for _ in range(n)]
strength_samples = [rng.gauss(230.0, 16.0) for _ in range(n)]
target = 0.001
for step in range(11):
d_nom = 28.0 + 0.5 * step
failures = 0
for torque, strength in zip(torque_samples, strength_samples):
diameter = rng.gauss(d_nom, 0.25)
tau = 16.0 * torque / (pi * diameter**3)
if 0.58 * strength - tau <= 0.0:
failures += 1
pf = failures / n
print(round(d_nom, 1), "mm Pf", round(pf, 5))
if pf <= target:
print("first candidate meeting target:", round(d_nom, 1), "mm")
break
Misconceptions and diagnostics
| Mistake | Diagnostic question | Correction |
|---|---|---|
| A target reliability has meaning without a defined failure mode and consequence. | Ask: target for what event, mission, and consequence? | Correct the assumption, then rerun the calculation or rewrite the report. |
| Beta is a universal safety score. | Ask: what distribution and limit-state assumptions map beta to probability? | Correct the assumption, then rerun the calculation or rewrite the report. |
| A probabilistic constraint replaces engineering judgement. | Ask: who accepts the consequence and residual risk? | Correct the assumption, then rerun the calculation or rewrite the report. |
| The optimizer's final design is automatically verified. | Ask: what independent simulation or benchmark challenged it? | Correct the assumption, then rerun the calculation or rewrite the report. |
Practice ladder
Rewrite 'stress must be below strength' as a chance constraint.
Solution guidance
Write the governing equation, state units and assumptions, then compare the answer with the relevant limit state or design decision.
For beta target 3.0 and sigma_g = 12 MPa, find needed mean margin.
Solution guidance
Write the governing equation, state units and assumptions, then compare the answer with the relevant limit state or design decision.
A report gives target reliability but no failure mode. Explain why it is incomplete.
Solution guidance
Write the governing equation, state units and assumptions, then compare the answer with the relevant limit state or design decision.
Propose a reliability-based redesign workflow for a bolted bracket.
Solution guidance
Write the governing equation, state units and assumptions, then compare the answer with the relevant limit state or design decision.
Working with AI, and proving it yourself
Useful AI support
Portfolio evidence
Create one short reliability note for this module. It must include the engineering question, assumptions, input definitions, equations, calculation, checks, interpretation, and limitations.
Retrieval and spaced review
Closed notes. Answer out loud, then reveal.
What is a chance constraint?
A constraint on the probability of violating a limit state.
What is target reliability tied to?
Failure mode, mission, consequence, and accepted risk context.
What does beta equal for a normal margin?
Mean margin divided by margin standard deviation.
Why independently verify a final design?
To catch solver, model, sampling, or implementation errors.
What is residual risk?
Risk that remains after design decisions, assumptions, and mitigations.
References and source discipline
This course synthesizes original MechCompass explanations from established reliability engineering sources. Confirm current editions and standards before using them for formal design approval.
| Topic in this module | Reference direction |
|---|---|
| Reliability-based design concepts | Le, Reliability-Based Mechanical Design, Volume 1 |
| FORM and reliability index foundations | Der Kiureghian, Structural and System Reliability |
| Risk-informed engineering reliability | Haldar and Mahadevan, Probability, Reliability, and Statistical Methods in Engineering Design |