Showing posts with label frerecad. Show all posts
Showing posts with label frerecad. Show all posts

2017-07-07

The correct dimensions of Hitec C1 spline

The C1 spline of 24 teeth is the standard shaft size for Hitec's servo motors, which are quite popular in maker community. Recently, I needed to design some parts that fits with it. However, finding it's accurate inner (basic) and outer (tip or addendum) diameters is very difficult. I don't know why this company does not simply release a drawing of it.

Some info floating on the Internet is not really accurate, such as this one: www.robotshop.com/blog/en/hobby-robot-industry-standards-hubs-patterns-18681

In the end, I reverse engineered from a design shared on GrabCAD and get the dimensions that work: https://grabcad.com/library/servo-horn-with-c1-spline-1

Here we go:
  • Inner radius: 2.520 mm
  • Outer radius: 2.845 mm. 
If you wanna 3D print an inner gear (a.k.a., annular gear) that fits with C1 spline, be sure to take the error or expansion that 3D printing can produce into consideration. In my case, I increased both inner and outer radii by 0.15 mm to 2.670 and 2.995mm respectively. 

2017-06-21

Creating an arbitrary surface or any geometric element in FreeCAD

Creating an arbitrary geometric element, such as a surface or a polygon, is a task common in CAD.

FreeCAD provides two ways to do so in its Part module.

The first approach is called Create Primitives, where you specify the parameters to define a geometric element. The menu is Part -> CreatePrimitives. See https://www.freecadweb.org/wiki/Part_CreatePrimitives

An example is below.



The second approach is called Shape Builder, where you build a new shape from elements defined earlier, such as creating a face from edges or vertexes. The menu is Part -> Shapebuilder. See https://www.freecadweb.org/wiki/Part_Shapebuilder

A good reference of all functions that Part module provides can be found here https://www.freecadweb.org/wiki/Part_Module