Helical Bevel Gear
The purpose of this tutorial is to illustrate the usage of the OpenCascadeLink to greate a helical bevel gear. The shape and the procedure of the creation are based on a computer aided design (CAD) tutorial [1].
The creation of the gear will be done in several stages. First, the shaft is created. As a second step the gear will be made. Both the shaft and the gear will be combined. Following that the bosses are added and lastly the gear will be perforated.

https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-8bxqkz
Shaft
The shaft will be created by specifying a cross section in the X-Z plane. This cross section will then serve as a basis for a solid created from a revolution around the X-axis.
The cross section will consist of three parts, two line segments and a half circle.

https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-swzasa
Note that the orientation of the segments is important. Should the orientation of the segments in the opposite direction the revolution will result in a solid that specifies the region outside of the shaft. If the orientation of a set of segments be in the opposite direction to what is wanted a trick is to revert the axis of revolution in the exact opposite direction. That will avoid respecifying the segments too.

https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-tu0gck

https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-behyp6


https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-3jbm24


https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-dr59bv


While OpenCascadeShapeUnion could have been used to combine the segments into a single object, OpenCascadeShapeUnion will return a compound and it’s harder to see what is in a compound.
Next, the cross section will be revolved around a rotation axis along the X-axis.

https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-858ye6


https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-n9g4jo


https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-18l8u

Now that the cross section is rotated the resulting shape is a shell. That is because the input to the rotation was a wire. However, we would like to have a solid.

https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-87gyzu


As an alternative, one could have used Polygon for the creation of the cross section. These are face type OpenCascade objects and after a revolution would have returned an OpenCascade solid.

https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-6zb00y


https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-tsoeqz

To verify that the boundary mesh construction worked as intended, a full element mesh is generated.

https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-n03yb6


The warning message will disappear if the boundary element mesh is created with a smaller "LinearDeflection" value than the default.
Gears
The creation of the gear itself will be done in two steps. First half a gear tooth is modeled in the YZ-plane. The half tooth is constructed by combining three sections of circles. This half tooth is then mirrored at an axis to give a complete tooth. The the single tooth is rotated to make a set of gear teeth in the YZ-plane. Once that is done the gear in the YZ-pane is translated, rotated and scaled in a second plane parallel to the YZ-plane. This procedure is repeated one more time to give a third set of teeth in a third plane again parallel to YZ-plane. The actual gear is then created by extruding through the planes. This created a loft.
Gear teeth
The gear tooth will be created by intersecting three circles and taking parts of their boundaries.
We start by sketching the procedure of the gear tooth generation in 2D.

https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-wlkx0t

https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-5iux0k



https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-7muefw


https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-gklhqr


https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-6865sc



https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-yh9u24


https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-1azniw

Next, we proceed to put the above insight into 3D. Since the Wolfram language does not have a Circle primitive that can be used in 3D OpenCascadeLink provides one. The primitive allows one to specify coordinates through which the circle should pass.

https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-lvwv2l


https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-0ngc5d

https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-d12yum

https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-nojk89


https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-sl212v

Next, the half tooth is mirrored along the Z-axis.

https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-cl56at


https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-4scm4q


https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-dy3dpt

https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-or6qlv

To visualize the created gear profile in 3D we use a trick to give the flat profile an extension in the X-direction. This is purely for visualization and is not needed for the gear constriction.

https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-oheoqc

Make planes
Now, the the gear profile is created that profile can be scaled, rotated and translated to create the gear profiles parallel to each other in the YZ-plane.

https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-j7fbg2

https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-cdsoeb

https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-vt9l6z


https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-z2kh5n


https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-dbmwi

https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-re1w5e

To verify that the boundary mesh construction worked as intended, a full element mesh is generated.

https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-6jmyk8

Combine
The shaft and the gear are now combined.

https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-32ee9p


https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-cg6syl

https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-it57eg

To verify that the boundary mesh construction worked as intended, a full element mesh is generated.

https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-o0ub0j

Boss

https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-mksaq1


https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-s34deq


https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-6ttbpf


https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-virn66

https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-44pcto


https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-0glinr

https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-q97phh

To verify that the boundary mesh construction worked as intended, a full element mesh is generated.

https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-pshy3o

Hollow shaft

https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-lvgzl1


https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-15g4tv


https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-u093y4


https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-chl2nq

https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-de67wz

To verify that the boundary mesh construction worked as intended, a full element mesh is generated.

https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-eccdab


https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-45vw9p

https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-wytfyn


https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-t05h1f

Initialization
The following helper function is to visualize circles in 3D space.

https://wolfram.com/xid/0b5g0r5a5qn4smigfjqtkrh0bv5uj5nm-2ny5x1