Back to Formula Library
F-9250-D001stiffness Verified

Size Selection by Bolt Diameter

Size Selection by Bolt Diameter

Formula Expression

Parameters

SymbolNameUnit
nominal_dianominal_dia

Need to compute this formula?

Contact us for design calculations with your actual parameters and a complete technical report.

Contact Engineering Team

Detailed Calculation Guide

DIN 9250 Specification Matching and Selection: Automatic Washer Size Query

1. Matching Principle

DIN 9250 defines a standard size series for toothed lock washers intended for use with metric ISO thread bolts. To automatically select a matching washer for a given nominal bolt diameter $d_{bolt}$, two core conditions must be satisfied:

  • Inner diameter constraint: The washer inner diameter $d_{inner}$ must be greater than the bolt major diameter, ensuring the washer can be easily slipped onto the bolt shank with adequate clearance.
  • Minimum size principle: Among all specifications satisfying the inner diameter constraint, select the washer with the smallest inner diameter, i.e., the specification closest to the bolt diameter, to avoid an oversized washer whose outer diameter exceeds the bearing surface of the bolt head/nut.

In practice, the query is typically performed via table lookup, searching the data table _DIN9250_SIZES (which may be an array, database, or standard table), filtering records where d_inner > d_bolt, sorting by d_inner in ascending order, and returning the complete washer dimensions of the first record.


2. DIN 9250 Standard Size Reference Table

The table below provides geometric parameters for DIN 9250 toothed washers matched to common nominal bolt diameters (based on standards and manufacturer data). Washers are typically disc-shaped with teeth; nominal dimensions are as follows:

Bolt Spec Washer Inner Diameter $d_i$ (mm) Washer Outer Diameter $d_e$ (mm) Thickness $t$ (mm) Free Cone Height $h_0$ (mm) Number of Teeth $n$
M3 3.2 7.0 0.5 0.2 6
M4 4.3 9.0 0.6 0.25 7
M5 5.3 10.0 0.7 0.3 8
M6 6.4 12.0 0.8 0.35 8
M8 8.4 16.0 1.0 0.45 10
M10 10.5 20.0 1.2 0.6 12
M12 13.0 24.0 1.5 0.75 12
M14 15.0 28.0 1.8 0.9 14
M16 17.0 30.0 2.0 1.0 14
M18 19.0 34.0 2.2 1.1 16
M20 21.0 37.0 2.5 1.25 16
M22 23.0 40.0 2.8 1.4 18
M24 25.0 44.0 3.0 1.5 18
M27 28.0 50.0 3.5 1.75 20
M30 31.0 56.0 4.0 2.0 20

Note: For sizes larger than M30, refer to the full DIN 9250 standard. Inner diameter, outer diameter, and thickness may have multiple series (e.g., narrow, wide); the above represents the general series.


3. Matching Query Logic (Pseudocode)

In a calculation tool or CAD system, this can be implemented as follows:


python
def match_din9250_washer(d_bolt, data_table):
    # Filter all rows where inner diameter is greater than the nominal bolt diameter
    candidates = [row for row in data_table if row['d_inner'] > d_bolt]
    if not candidates:
        raise ValueError("No matching DIN 9250 washer specification found")
    # Sort by inner diameter in ascending order and take the first
    candidates.sort(key=lambda x: x['d_inner'])
    return candidates[0]

The query result returns a dictionary containing d_inner, d_outer, thickness, h0, n_teeth for subsequent torque and stress verification.

Example:

  • Bolt M10 → d_bolt = 10.0
    In the table, inner diameter 10.5 > 10.0, and it is the smallest inner diameter satisfying the condition → matches the M10 specification.

  • If the bolt is M9 (non-standard), inner diameter 10.5 > 9.0, it may match the M10 washer (slightly larger inner diameter). In this case, additional verification is needed to check whether the outer diameter exceeds the bolt head bearing surface.


4. Necessary Verification After Matching

After selecting the washer specification, compatibility with the bolt and the connected parts must be verified:

  1. Outer Diameter Compatibility
    The washer outer diameter $d_e$ should not exceed the bearing surface outer diameter $d_w$ of the bolt head/nut; otherwise, the toothed edge will overhang, reducing locking effectiveness and potentially crushing the washer edge. If the outer diameter is too large, consider using flange bolts or adding a flat washer.

  2. Thread Length
    The washer thickness (or total thickness of a stacked assembly) plus the nut engagement length must not exceed the available thread length of the bolt.

  3. Load Capacity Verification

  4. Calculate the washer flattening force $F_{flat}$ (based on $d_e$, $t$, $h_0$, etc.), ensuring the maximum assembly preload $F_{Mmax} \leq F_{flat} / S_{flat}$.

  5. For toothed washers, also consider the tooth cross-section reduction factor; the actual flattening force is slightly lower than the smooth value.

  6. Surface Pressure and Indentation
    The tooth tip contact pressure $p_{max}$ and indentation depth $h_{indent}$ must be within allowable limits, especially for soft material connected parts.

  7. Locking Torque and Safety Factor
    Use the matched washer dimensions to calculate $M_{lock}$ and $S_{lock}$, ensuring compliance with vibration level requirements.


5. Extension: Multiple Series Selection

For some diameters, DIN 9250 offers narrow (A) and wide (B) width series (similar to Z/M/L). During selection, in addition to satisfying the inner diameter match, the appropriate width should be chosen based on bearing area requirements and installation space. The query can be extended to include a width series parameter, returning the corresponding outer diameter and thickness from the data table.

Typical extended query: Return all specifications satisfying d_inner > d_bolt, allowing the engineer to further filter based on outer diameter, thickness, and load capacity.


6. Summary

The core of automated DIN 9250 washer selection is to look up the table based on the nominal bolt diameter and select the smallest specification with a slightly larger inner diameter. This ensures mechanical compatibility between the washer and the bolt while providing accurate geometric input for subsequent strength and locking verification. In practical engineering, it is recommended to embed the standard size table into design software for one-click matching and verification.

This site uses cookies to improve your browsing experience. By continuing, you agree to our use of cookies.

Privacy Policy