|
Menu location |
---|
Gear → Involute Gear |
Workbenches |
FCGear |
Default shortcut |
None |
Introduced in version |
v0.16 |
See also |
FCGear CycloideGear |
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
An FCGear InvoluteGear object is derived from a Part Feature object and inherits all its properties. It also has the following additional properties:
accuracy
Integer
): Default is 20
. Change of the involute profile. Changing the value can lead to unexpected results.Bool
): Default is false
, true
generates a simplified display (without teeth and only a cylinder in pitch diameter).base
Length
): Default is 5 mm
. Value of the gear width.Length
): Default is 1 mm
. Module is the ratio of the reference diameter of the gear divided by the number of teeth (see Notes).Integer
): Default is 15
. Number of teeth (see Notes).computed
Length
): Default is 17 mm
. Outside diameter, measured at the addendum (the tip of the teeth).Angle
): (read-only) The angle by which this gear can turn without moving the mating gear.Length
): Default is 15 mm
. The pitch diameter.Length
): (read-only) The root diameter, measured at the foot of the teeth.Length
): Default is 3.14 mm
. The transverse pitch.Length
): Default is 1 mm
. The traverse module of the generated gear.fillets
Float
): Default is 0 mm
. A fillet for the tooth-head.Float
): Default is 0 mm
. A fillet for the tooth-root.Bool
): Default is false
, true
changes the profile of the tooth root (see Notes).helical
Bool
): Default is false
, true
creates a double helix gear (see Notes).Angle
): Default is 0 °
. With the helix angle β a helical gear is created – positive value → rotation direction right, negative value → rotation direction left (see Notes).Bool
): Default is false
. If true
and Datahelix_angle is not zero, gear parameters are recomputed internally for the rotated gear.hole
Bool
): Default is false
. true
enables a central hole for an axle.Length
): Default is 10 mm
. Diameter of the hole for an axle.Bool
): Default is false
, true
enables an offset hole.Length
): Default is 10 mm
. The offset of the offset hole.Length
): Default is 10 mm
. The diameter of the offset hole.involute
Angle
): Default is 20 °
(see Notes).Float
): Default is 0
. Generates a positive and negative profile shift (see Notes).tolerance
Length
): Default is 0
. Backlash, also called lash or play, is the distance between the teeth at a gear pair.Float
): Default is 0.25
(see Notes).Float
): Default is 0
. This value is used to change the tooth height.Bool
): true
backlash decrease or false
(default) backlash increase see Notes).version
String
):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.
Here “standard” refers to those spur gears with no profile shift coefficient ().
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, |
Symbol | Term | Formula |
---|---|---|
Tip Diameter | Typically, | |
Root Diameter | Typically, |
Symbol | Term | Formula |
---|---|---|
Tip Diameter | Typically, | |
Root Diameter | Typically, |
Symbol | Term | Formula |
---|---|---|
Center Distance | ||
Tip and Root Clearance | |
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")