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:
- Create Pitch Circle and Tip Diameter
Sketch reference circles using Pitch diameter and Tip diameter - Sketch Roller Circle
Create one roller position using diameter defined by standard (e.g., 8.51 mm). - Create Tooth Cutting Profile
Based on pitch circle and roller location, sketch a profile that removes material between teeth. - Extrude Base Geometry
Use the sprocket profile to extrude the body. - Cut Tooth Gap
Apply the tooth profile cut on the pitch circle. - Pattern Teeth Around Center
Use rotational pattern for the number of teeth. - (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