Saturday, February 24, 2024

Flange - 2D draft and views of 3D model from a book "100 CAD exercises. Beginners guide by 12CAD.com"

     There is a draft or 2D sketch:


    And there are two views of a 3D model:





    3D model have been created by author of article.

Sunday, July 30, 2023

Hook for winch

     This hook was created from ISO 1837-2003 standart image.





 

Material - stainless steel 440C   (UNS designation S44004). 

Load - 7500 N.

Wednesday, June 21, 2023

Cube volume calculate program

Code of program:

print("calculate cube volume")
a=input("a=")
a=float(a)
volume=a**3
print("volume=")
print(volume)

Cylinder volume calculate program

Code of program:

import math
print("calculate cylinder volume")
r=input("r=")
r=float(r)
h=input("h=")
h=float(h)
volume=math.pi*(r**2)*h
print("volume=")
print(volume)