FCGear InvoluteGear

FCGear InvoluteGear

Menu location
Gear → Involute Gear
Workbenches
FCGear
Default shortcut
None
Introduced in version
v0.16
See also
FCGear CycloideGear

Description

Due to the favourable meshing ratio and the relatively simple production, involute gearing is the most common tooth form in mechanical engineering. Gear wheels can be found wherever movement and force are to be transferred from one part to another. For example, they can be found in machines, cars, watches or household appliances. The movement is often transferred directly from one gear wheel to the other, but sometimes also via a chain. In addition, the direction of rotation can be changed. It is also possible to change a radial movement into a linear one via an involute rack.

From left to right: Spur gearing, helical gearing, double helical gearing

Usage

  1. Switch to the FCGear Workbench.
  2. There are several ways to invoke the command:
    • Press the Involute Gear button in the toolbar.
    • Select the Gear → Involute Gear option from the menu.
  3. Change the gear parameter to the required conditions (see Properties).

Properties

An FCGear InvoluteGear object is derived from a Part Feature object and inherits all its properties. It also has the following additional properties:

Data

accuracy

base

computed

fillets

helical

hole

involute

tolerance

version

Notes

Limitations

A 2D tooth profile, obtained by setting the Dataheight to zero, cannot be used with features requiring a 2D shape. For example PartDesign Pad and PartDesign AdditiveHelix features do not accept such a profile as base. For technical details, please refer to the related issue on GitHub.

Useful formulas

Standard Spur Gears

Here “standard” refers to those spur gears with no profile shift coefficient ().

Basic formulas common to internal and external standard spur gears
Symbol Term Formula FCGear Parameter
Module -
Number of Teeth -
Pressure Angle Typically,
Reference Diameter or Pitch Diameter
Addendum Coefficient Typically,
Dedendum Coefficient Typically,
Addendum -
Dedendum -
Tooth Height or Tooth Depth
Typically,
-
Profile Shift Coefficient For standard gears,
Basic formulas specific to external standard spur gears
Symbol Term Formula
Tip Diameter

Typically,

Root Diameter

Typically,

Basic formulas specific to internal standard spur gears
Symbol Term Formula
Tip Diameter

Typically,

Root Diameter

Typically,

Basic formulas specific for a pair of external standard spur gears
Symbol Term Formula
Center Distance
Tip and Root Clearance


Typically,

Scripting

Use the power of Python to automate your gear modeling:

import FreeCAD as App
import freecad.gears.commands
gear = freecad.gears.commands.CreateInvoluteGear.create()
gear.teeth = 20
gear.beta = 20
gear.height = 10
gear.double_helix = True
App.ActiveDocument.recompute()
Gui.SendMsgToActiveView("ViewFit")