FCGear: Cremagliera

From FreeCAD Documentation
Revision as of 14:16, 21 May 2024 by Simone.b (talk | contribs) (Created page with "* {{PropertyData|head_fillet|Float}}: L'impostazione predefinita è {{Value|0 mm}}. * {{PropertyData|root_fillet|Float}}: L'impostazione predefinita è {{Value|0 mm}}.")
Other languages:

Cremagliera

Posizione nel menu
Gear → Involute Rack
Ambiente
FCGear
Avvio veloce
None
Introdotto nella versione
v0.16
Vedere anche
FCGear: Ingranaggio ad evolvente

Descrizione

Le cremagliere vengono utilizzate per convertire un movimento rotatorio in un movimento lineare o viceversa. I seguenti esempi mostrano le diverse applicazioni:

  • Una cremagliera con ingranaggio inserito in uno sbarramento di contenimento.
  • Vari sistemi a cremagliera di ferrovie a cremagliera.
  • Sterzo a pignone e cremagliera in un veicolo.
  • Verricello a pignone e cremagliera come paranco meccanico (ad es. cric per auto).
  • Azionamenti pneumatici a pignone e cremagliera utilizzati per controllare le valvole nel trasporto di tubazioni.

Da sinistra a destra: ingranaggi cilindrici, ingranaggi elicoidali, ingranaggi elicoidali doppi

Utilizzo

  1. Passare a FCGear.
  2. Esistono diversi modi per richiamare il comando:
    • Premere il pulsante Involute Rack nella barra degli strumenti.
    • Selezionare l'opzione Gear → Involute Rack dal menu.
  3. Modificare il parametro dell'ingranaggio alle condizioni richieste (vedere Proprietà).

Proprietà

Un oggetto FCGear InvoluteRack deriva da un oggetto Part Feature ed eredita tutte le sue proprietà. Ha inoltre le seguenti proprietà aggiuntive:

Dati

base

  • Datiadd_endings (Bool): Se true (predefinito), la lunghezza totale della cremagliera è denti * passo. Se false, la cremagliera inizia con un fianco dentellato.
  • Datiheight (Length): Il valore predefinito è 5 mm. Valore della larghezza dell'ingranaggio.
  • Datimodule (Length): L'impostazione predefinita è 1 mm. Il modulo è il rapporto tra il diametro di riferimento dell'ingranaggio diviso per il numero di denti (vedere Note).
  • Datiteeth (Integer): L'impostazione predefinita è 15. Numero di denti.
  • Datithickness (Length): L'impostazione predefinita è 5. Altezza del piede del dente dal piano inferiore della cremagliera.

computed

  • Datitransverse_pitch (Length): (sola lettura) Inclinazione nel piano trasversale (vedere Note).

fillets

  • Datihead_fillet (Float): L'impostazione predefinita è 0 mm.
  • Datiroot_fillet (Float): L'impostazione predefinita è 0 mm.

helical

  • Datibeta (Angle): Default is 0 °. With the helix angle β a helical gear is created – positive value → rotation direction right, negative value → rotation direction left.
  • Datidouble_helix (Bool): Default is false, true creates a double helix gear (see Notes).
  • Datiproperties_from_tool (Bool): Default is false. If true and Datibeta is not zero, gear parameters are recomputed internally for the rotated gear.

involute

  • Datipressure_angle (Angle): Il valore predefinito è 20° (vedere Note).

precision

  • Datisimplified (Bool): L'impostazione predefinita è false, true genera una visualizzazione semplificata (senza denti).

tolerance

  • Daticlearance (Float): Il valore predefinito è 0,25 (vedere Note).
  • Datihead (Float): L'impostazione predefinita è 0. Questo valore viene utilizzato per modificare l'altezza del dente.

version

  • Dativersion (String):

Note

  • transverse_pitch: The value is the result of multiplication of module * pi. This means for the standard involute rack of FCGear: 15 (teeth) * 3.14 (transverse_pitch) is 47.12 mm. See also module further below.
  • clearance: At a gear pair, clearance is the distance between the tooth tip of the first gear and the tooth root of the second gear.
  • double_helix: To use the double helical gearing the helix angle β (beta) for the helical gearing must first be entered.
  • module: Using ISO (International Organization for Standardization) guidelines, Module size is designated as the unit representing gear tooth-sizes. Module (m): m = 1 (p = 3.1416), m = 2 (p = 6.2832), m = 4 (p = 12.566). If you multiply Module by Pi, you can obtain Pitch (p). Pitch is the distance between corresponding points on adjacent teeth. The result of the multiplication is displayed in transverse_pitch
  • pressure_parameter: Only change the parameter, if sufficient knowledge of the gear geometry is available.

Formule utili

Vedere FCGear: Ingranaggio ad evolvente.

Script

Utilizzare la potenza di Python per automatizzare la modellazione degli ingranaggi:

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