Learn how to model a standard sprocket gear in Creo Parametric using real-world mechanical design rules and parametric relations. This tutorial walks you through each step β€” from pitch definition to patterned teeth β€” resulting in a ready-to-use part model.


πŸ” What is a Sprocket Gear?

Sprockets are toothed wheels designed to engage with roller chains, commonly used in bicycles, motorcycles, conveyors, and industrial machinery. Unlike gears, sprockets don’t mesh together directly; they transfer motion through chain linkage.

Sprockets are defined and dimensioned by international standards:

  • ANSI B29.1 – Roller chain sprockets (Imperial standard)
  • DIN 8187 / ISO 606 – European metric roller chains and sprockets

Key geometric features include:

  • Pitch Diameter – the effective diameter where the chain rollers engage.
  • Roller Diameter – defined by the chain standard (e.g., 12.7 mm for 06B-1 chain).
  • Tooth Profile – depends on pitch, roller diameter, and chain clearance.
  • Pitch – distance between adjacent rollers, e.g., 12.7 mm (0.5”) in ISO 06B-1 chain.

▢️ Watch the Video: Modeling Process


πŸ“ Modeling Steps Overview

Below is a step-by-step process followed in the video:

  1. Create Pitch Circle and Tip Diameter
    Sketch reference circles using Pitch diameter and Tip diameter
  2. Sketch Roller Circle
    Create one roller position using diameter defined by standard (e.g., 8.51 mm).
  3. Create Tooth Cutting Profile
    Based on pitch circle and roller location, sketch a profile that removes material between teeth.
  4. Extrude Base Geometry
    Use the sprocket profile to extrude the body.
  5. Cut Tooth Gap
    Apply the tooth profile cut on the pitch circle.
  6. Pattern Teeth Around Center
    Use rotational pattern for the number of teeth.
  7. (Optional) Final Touches
    Add holes, chamfers, or further cuts as needed (e.g., mounting holes, weight reduction).

πŸ“Š Used Relations (Simplified)

Here are examples of parametric relations used in the model:

Main Relations:
/***** SPROCKET INPUTS (YOUR MEASUREMENTS) *****/
ROLLER_DIA = 8.51 /* Roller diameter (mm)
Z = 20 /* Number of teeth
P = 12.7 /* Pitch β‰ˆ12.7mm (ANSI #40 chain)

/***** DERIVED PARAMETERS *****/
PITCH_DIA = P / sin(180 / Z) /* Pitch diameter
TIP_DIA = P * (0.6 + (1 / tan(180/Z))) /* Outer diameter
TOOTH_RADIUS= 0.12 * ROLLER_DIA * (Z + 2) /* Typically spans from seating curve to tooth tip

Sketch Relations - main circles:
sd0 = PITCH_DIA /* Pitch circle */
sd1 = TIP_DIA /* Outer circle */
Circle sketch relation (example for the dimension d19):
d19=ROLLER_DIA /* Chain diameter (mm)
Final relations:
number_of_tooth=z /* Pattern members

πŸ› οΈ Why Parametric Modeling?

By using relations, your sprocket model becomes:

  • Reusable – Change tooth count or pitch, and model updates automatically.
  • Standardized – Ensures dimensions follow ANSI/DIN definitions.
  • Precise – Ideal for simulation or CNC manufacturing exports.

For more details check: Sprocket-Engineering-Data.pdf

Comments are closed