FCGear: Ingranaggio a lanterna
|
|
| Posizione nel menu |
|---|
| FCGear → Create a Lantern gear |
| Ambiente |
| FCGear |
| Avvio veloce |
| None |
| Introdotto nella versione |
| v0.16 |
| Vedere anche |
| Nessuno |
Descrizione
The FCGear LanternGear command creates a lantern gear wheel. This can be used as a cog/chain wheel in a roller chain transmission, or as a pinion for a roller rack and pinion gear.
La dentatura dell'ingranaggio a lanterna è una forma speciale di dentatura cicloidale in cui il cerchio di rotolamento e il cerchio primitivo hanno la stessa dimensione. Inoltre, in un cambio i denti della ruota più grande sono sostituiti da cilindri. La piccola ruota è dotata di un ingranaggio cicloide. Ciò si traduce in un ingranaggio unilaterale. Gli ingranaggi delle lanterne possono essere solo dentati diritti.
Poiché la loro costruzione è molto semplice, sono tra le più antiche forme di ingranaggi. Gli ingranaggi delle lanterne vengono utilizzati quando sono richiesti rapporti di trasmissione elevati, ad esempio negli ingranaggi dei mulini o gru per la movimentazione del legname.
L'ingranaggio a lanterna combinato con una catena a rulli rappresenta un'alternativa economica e robusta alle trasmissioni a pignone e cremagliera. Muovendo la catena tesa tangenzialmente lungo la ruota dentata, il movimento lineare della catena viene convertito in un movimento rotatorio della ruota. Viceversa, il movimento lineare della catena può essere ottenuto anche dal moto rotatorio della ruota dentata (moto o bicicletta).
Above: Lantern gear
Usage
- Switch to the
Gear Workbench.
- There are several ways to invoke the command:
- Press the
Lantern Gear button in the toolbar.
- Select the Gear →
Lantern Gear option from the menu.
- Press the
- Change the gear parameter to the required conditions (see Properties).
Properties
See also: Property View.
An FCGear LanternGear object is derived from a Part Feature object and inherits all its properties. It also has the following additional properties:
Data
accuracy
- Datinum_profiles (
Integer): Default is10. The value normally does not need to be changed.
base
- Datibolt_radius (
Length): Default is1 mm. Diameter of the cylinder on the rotating disc which functions as a second "gear wheel". - Datiheight (
Length): Default is5 mm. Value of the gear width. - Datimodule (
Length): Default is1 mm. Module is the ratio of the reference diameter of the gear divided by the number of teeth (see Notes).
gear_parameter
- Datinum_teeth (
Integer): Default is15. Number of teeth.
tolerance
- Datihead (
Float): Default is0.
version
- Dativersion (
String):
Notes
- Datimodule (): Using ISO (International Organization for Standardization) guidelines, Module size is designated as the unit representing gear tooth-sizes.
- The module multiplied by the number of teeth () defines the pitch circle diameter ():
- The module multiplied by Pi () defines the pitch (), the arc distance on the pitch circle between corresponding points of adjacent teeth:
Useful formulas
| Symbol | Term | Formula |
|---|---|---|
| Pitch Diameter | ||
| Addendum Diameter | ||
| Axle Base |
- addendum diameter AKA tip diameter
- axle base AKA center distance
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.CreateLanternGear.create()
gear.num_teeth = 20
gear.height = 4
App.ActiveDocument.recompute()
Gui.SendMsgToActiveView("ViewFit")
