Calculate Lathe Compound Angle To Turn A Taper

Описание к видео Calculate Lathe Compound Angle To Turn A Taper

In this video I will try to explain the math necessary to calculate the lathe compound angle for a given taper.

Python Code simplified
import math
D = 4
d = 1.5
L = 5.5
rca = round(math.degrees(math.atan(D/2)-(d/2)/L),1)
print(rca)

Комментарии

Информация по комментариям в разработке