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.
|
|
| Menu location |
|---|
| Gear → Cycloid Rack |
| Workbenches |
| Gear |
| Default shortcut |
| None |
| Introduced in version |
| 1.0 |
| See also |
| FCGear CycloidGear |
The FCGear CycloidRack command creates a cycloid gear rack with spur gearing by default that can also be transformed into a helical gearing or a double helical gearing.
Cycloid racks from left to right: Spur gearing, helical gearing, double helical gearing
See also: Property View.
An FCGear CycloidRack object is derived from a Part Feature object and inherits all its properties. It also has the following additional properties:
accuracy
Integer): Default is 15. Number of points for spline.base
bool): If true (default), then the total length of the rack is teeth * pitch. If false, then the rack starts with a tooth-flank.Length): Default is 5 mm. Value of the gear width.Integer): Default is 15. Number of teeth.Length): Default is 5 mm. Thickness of the uncut part of the rack.computed
Length): (read-only) Pitch in the transverse plane.cycloid
Float): Default is 7.5. Diameter of the rolling circle of hypocycloid, normalized by the Datamodule (see Notes).Float): Default is 7.5. Diameter of the rolling circle of epicycloid, normalized by the Datamodule (see Notes).fillets
Float): Default is 0.Float): Default is 0.helical
Angle): Default is 0°. With the helix angle β a helical gear is created (positive value → rotation direction right, negative value → rotation direction left).Bool): Default is false, true creates a double helix gear (see Notes).involute
Length): Default is 1 mm. For racks the module equals the pitch and so is the distance between corresponding points on adjacent teeth (see Notes).precision
Bool): Default is false. If true the rack is drawn with a constant number of teeth to avoid topological renaming.tolerance
Float): Default is 0.25 (see Notes).Float): Default is 0. Additional length of the tip of the teeth, normalized by the Datamodule.version
String):See FCGear CycloidGear.
See FCGear CycloidGear.
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.CreateCycloidRack.create()
gear.num_teeth = 20
gear.helix_angle = 20
gear.height = 10
gear.double_helix = True
App.ActiveDocument.recompute()
Gui.SendMsgToActiveView("ViewFit")