[go: up one dir, main page]

0% found this document useful (3 votes)
2K views6 pages

"Python To Solve Mechanical Poblems": Case Study Report On

This document is a case study report on using Python to solve mechanical problems. It discusses how Python can be used to perform numerical analysis and computational fluid dynamics simulations to solve problems involving things like thermodynamics, chemical kinetics, and fluid dynamics. It then presents a sample problem calculating the minimum and maximum diameter of a hole given its nominal diameter and tolerance range, and shows the Python code to solve it. The conclusion reiterates that Python is an efficient language for solving complex mechanical problems quickly.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (3 votes)
2K views6 pages

"Python To Solve Mechanical Poblems": Case Study Report On

This document is a case study report on using Python to solve mechanical problems. It discusses how Python can be used to perform numerical analysis and computational fluid dynamics simulations to solve problems involving things like thermodynamics, chemical kinetics, and fluid dynamics. It then presents a sample problem calculating the minimum and maximum diameter of a hole given its nominal diameter and tolerance range, and shows the Python code to solve it. The conclusion reiterates that Python is an efficient language for solving complex mechanical problems quickly.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 6

CASE STUDY REPORT ON

“PYTHON TO SOLVE MECHANICAL POBLEMS”


SECOND YEAR MECHANICAL ENGINEERING

Submitted By Mis. No.


Adityaraj Milind Patil 19161062

Under the Guidance Of

Prof. Sheetal Thakare

DEPARTMENT OF MECHANICAL ENGINEERING

BHARATI VIDYAPEETH COLLEGE OF ENGINEERING, NAVI-MUMBAI


(YEAR 2020-21)

1
CERTIFICATE

BHARATI VIDYAPEETH COLLEGE OF ENGINEERING, NAVI-MUMBAI


DEPARTMENT OF MECHANICAL ENGINEERING

This is to certify that,

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

Faculty In-Charge HOD Principal.


CASE STUDY

AIM: Use Of Python To Solve Mechanical Problems

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

Python can be used to solve classical thermodynamics problems. Whether your


problem involves chemical kinetics or fluid dynamics, you can write a code to solve the
problem and save your time. the field of computational fluid dynamics, Python has a
massive application. In order to simulate problems in CFD software, you will be required to
write your scripts in programming languages like MATLAB/Python.

OBJECTIVES:

1. To learn to solve mechanical problems with the help of python

2. To learn about importance of python in mechanical & automobile engineering and


industries.

.
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)

Max Diameter: 80.222


Min Diameter: 79.898
CONCLUSION:
Thus we can conclude that, Python is an extremely easy and efficient
programming language and it can solve complex mechanical problems in a
matter of seconds.

You might also like