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)

Ring area calculate program

Code of program:

import math
print("calculate ring area")
R=input("R=")
R=float(R)
r=input("r=")
r=float(r)
area=math.pi*((R**2)-(r**2))
print("area=")
print(area)