2017-09-02 15:34:20 +02:00
2019-03-07 10:59:24 +01:00
2019-03-05 12:14:34 +01:00
2018-03-14 19:04:02 +01:00
2015-06-07 21:16:34 +02:00
2014-04-08 08:55:00 -07:00
2018-03-14 19:04:02 +01:00
2019-03-05 12:23:13 +01:00
2018-11-08 20:44:28 +01:00

A gear module for FreeCAD > 0.16

gear gear1

supported gear-types:

  • cylindric involute

    • shifting
    • helical
    • double helical
    • undercut
  • involute rack

  • cylindric cycloid

    • helical
    • double helical
  • spherical involute bevel-gear

    • spiral
  • crown-gear


install

pip install https://github.com/looooo/FCGear/archive/master.tar.gz

useage

  • create a gear:
    • open freecad
    • go to the gear workbench
    • create new document
    • create a gear (click on gear symbol)
    • change parameters

scripted gears:

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")

references:

very good document

forum topics:

Description
No description provided
Readme GPL-3.0 28 MiB
Languages
Python 97.2%
Shell 2.8%