FCGear InvoluteRack

FCGear InvoluteRack

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

Description

The FCGear InvoluteRack command creates an involute gear rack with spur gearing by default that can also be transformed into a helical gearing or a double helical gearing.

Gear racks are used to convert a rotary motion into a linear motion or vice versa. The following examples show the different applications:

Involute racks from left to right: Spur gearing, helical gearing, double helical gearing

Usage

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

Properties

See also: Property View.

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

Data

base

computed

fillets

helical

involute

precision

tolerance

version

Notes

Useful formulas

See FCGear InvoluteGear.

Scripting

Use the power of python to automate your gear modeling:

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