FCGear InternalInvoluteGear

This documentation is not finished. Please help and contribute documentation.

GuiCommand model explains how commands should be documented. Browse Category:UnfinishedDocu to see more incomplete pages like this one. See Category:Command Reference for all commands.

See WikiPages to learn about editing the wiki pages, and go to Help FreeCAD to learn about other ways in which you can contribute.

FCGear InternalInvoluteGear

Menu location
Gear → Internal Involute Gear
Workbenches
Gear
Default shortcut
None
Introduced in version
1.0
See also
FCGear InvoluteGear

Description

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

Internal involute gears 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 Internal Involute Gear button in the toolbar.
    • Select the Gear → Internal Involute Gear option from the menu.
  3. Change the gear parameter to the required conditions (see Properties).

Properties

See also: Property View.

An FCGear InternalInvoluteGear 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

involute

precision

tolerance

version

Notes

See FCGear InvoluteGear.

Useful formulas

See FCGear InvoluteGear.

Scripting

Use the power of Python to automate your gear modeling:

import FreeCAD as App
import FreeCADGui as Gui
import freecad.gears.commands
gear = freecad.gears.commands.CreateInternalInvoluteGear.create()
gear.num_teeth = 20
gear.helix_angle = 20
gear.height = 10
gear.double_helix = True
App.ActiveDocument.recompute()
Gui.SendMsgToActiveView("ViewFit")