FCGear InvoluteGear |
Menu location |
---|
Gear → Involute Gear |
Workbenches |
FCGear |
Default shortcut |
None |
Introduced in version |
v0.16 |
See also |
FCGear CycloideGear |
Debido a la favorable relación de engrane y su fabricación relativamente sencilla, el dentado de espiral es la forma de diente más común en la construcción de máquinas. Las ruedas dentadas se encuentran allí donde se desea transferir movimiento y fuerza de una pieza a otra. Se pueden encontrar, por ejemplo, en máquinas, coches, relojes o electrodomésticos. A menudo, el movimiento se transmite directamente de una rueda dentada a otra, pero a veces también a través de una cadena. Además, se puede cambiar el sentido de giro. También es posible cambiar un movimiento radial a uno lineal mediante un cremallera involuta.
De izquierda a derecha: engranaje recto, engranaje helicoidal, engranaje helicoidal doble
Un objeto FCGear InvoluteGear se deriva de un objeto Part Feature y hereda todas sus propiedades. También tiene las siguientes propiedades adicionales:
accuracy
Integer
): Default is 20
. Change of the involute profile. Changing the value can lead to unexpected results.Bool
): Default is false
, true
generates a simplified display (without teeth and only a cylinder in pitch diameter).base
Length
): Default is 5 mm
. Value of the gear width.Length
): Default is 1 mm
. Module is the ratio of the reference diameter of the gear divided by the number of teeth (see Notes).Integer
): Default is 15
. Number of teeth (see Notes).computed
Length
): Default is 17 mm
. Outside diameter, measured at the addendum (the tip of the teeth).Angle
): (read-only) The angle by which this gear can turn without moving the mating gear.Length
): Default is 15 mm
. The pitch diameter.Length
): (read-only) The root diameter, measured at the foot of the teeth.Length
): Default is 3.14 mm
. The transverse pitch.Length
): Default is 1 mm
. The traverse module of the generated gear.fillets
Float
): Default is 0 mm
. A fillet for the tooth-head.Float
): Default is 0 mm
. A fillet for the tooth-root.Bool
): Default is false
, true
changes the profile of the tooth root (see Notes).helical
Bool
): Default is false
, true
creates a double helix gear (see Notes).Angle
): Default is 0 °
. With the helix angle β a helical gear is created – positive value → rotation direction right, negative value → rotation direction left (see Notes).Bool
): Default is false
. If true
and Datoshelix_angle is not zero, gear parameters are recomputed internally for the rotated gear.hole
Bool
): Default is false
. true
enables a central hole for an axle.Length
): Default is 10 mm
. Diameter of the hole for an axle.Bool
): Default is false
, true
enables an offset hole.Length
): Default is 10 mm
. The offset of the offset hole.Length
): Default is 10 mm
. The diameter of the offset hole.involute
Angle
): Default is 20 °
(see Notes).Float
): Default is 0
. Generates a positive and negative profile shift (see Notes).tolerance
Length
): Default is 0
. Backlash, also called lash or play, is the distance between the teeth at a gear pair.Float
): Default is 0.25
(see Notes).Float
): Default is 0
. This value is used to change the tooth height.Bool
): true
backlash decrease or false
(default) backlash increase see Notes).version
String
):
A 2D tooth profile, obtained by setting the Datosheight to zero, cannot be used with features requiring a 2D shape. For example PartDesign Pad and PartDesign AdditiveHelix features do not accept such a profile as base. For technical details, please refer to the related issue on GitHub.
Aquí "standard" se refiere a aquellos engranajes rectos sin coeficiente de cambio de perfil ().
Symbol | Term | Formula | FCGear Parameter |
---|---|---|---|
Module | - | ||
Number of Teeth | - | ||
Pressure Angle | Typically, | ||
Reference Diameter or Pitch Diameter | |||
Addendum Coefficient | Typically, | ||
Dedendum Coefficient | Typically, | ||
Addendum | - | ||
Dedendum | - | ||
Tooth Height or Tooth Depth | Typically, |
- | |
Profile Shift Coefficient | For standard gears, |
Symbol | Term | Formula |
---|---|---|
Tip Diameter | Typically, | |
Root Diameter | Typically, |
Symbol | Term | Formula |
---|---|---|
Tip Diameter | Typically, | |
Root Diameter | Typically, |
Symbol | Term | Formula |
---|---|---|
Center Distance | ||
Tip and Root Clearance | |
Utilice el poder de Python para automatizar el modelado de sus engranajes:
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")