"Python To Solve Mechanical Poblems": Case Study Report On
"Python To Solve Mechanical Poblems": Case Study Report On
1
CERTIFICATE
Mr, ADITYARAJ MILIND PATIL, Class SE MECH MIS No: 19161062 Branch:
Mechanical Engineering has completed the entire Case Study Work
Satisfactorily/Unsatisfactorily in the subject Python Programming of Mechanical
Engineering Department as prescribed by the Mumbai University in the Academic
Year 2020 – 2021
Date: 30/04/2021
INTRODUCTION:
Python is an extremely easy and efficient programming language.It can solve
complex problems in a matter of seconds. Python can be handy for mechanical engineer on
many occasions. The most popular application of python is to perform numerical analysis.
When problems linear equations and ODE/PDE are involved, it would take a long time to
solve the problems analytically. In terms of mechanical engineering, there are usually
boundary conditions present which make it twice harder to solve numerical analysis
problem
OBJECTIVES:
.
PROBLEM
#PyEx — Python — Mechanical Tolerance:
The Problem: A hole has a diameter of 80mm and a tolerance of -0.102 and +0.222. Determine the
minimum and maximum dimensions of this hole using Python Jupiter Notebook
Solution:
01_Solution (python cell code):D=80
a=-0.102
b=0.222
Dmin=D+a
Dmax=D+b
print('Max Diameter: %.3f' % Dmax)
print('Min Diameter: %.3f' % Dmin)