Curve fitting can be defined as the process of constructing a curve or mathematical function that has the best fit to a series of data points, subject to constraints. In this project, the curve for specific heat as a function of temperature will be plotted and the plot will be compared with the actual plot. What…
Chinmay kulkarni
updated on 25 Jan 2022
Project Details
Leave a comment
Thanks for choosing to leave a comment. Please keep in mind that all the comments are moderated as per our comment policy, and your email will not be published for privacy reasons. Please leave a personal & meaningful conversation.
Other comments...
Read more Projects by Chinmay kulkarni (4)
Week 6 - Data analysis
Objective: To write a program that would read the file containing an engine's data and create a data visualizer. Also to plot the P-V diagram of the engine and calculate its power output and specific fuel consumption.Data analysis: Python is an increasingly popular tool for data analysis.In this task, a file containing…
04 Feb 2022 05:16 AM IST
Week 5 - Curve fitting
Curve fitting can be defined as the process of constructing a curve or mathematical function that has the best fit to a series of data points, subject to constraints. In this project, the curve for specific heat as a function of temperature will be plotted and the plot will be compared with the actual plot. What…
25 Jan 2022 07:54 AM IST
Week 2 Air standard Cycle
Aim: To solve a program on Air Standard cycle in Python to solve an Otto cycle Objective: 1. To find thermal efficiency 2. To find and solve variables in the Otto cycle and plot its P-V diagram. Program - """Air Standard Cycle : Otto Cycle Project"""import…
19 Jan 2022 10:53 AM IST
Week 3 - Solving second order ODEs
# Motion of Pendulum Challenge ODE import mathimport matplotlib.pyplot as pltimport numpy as npfrom scipy.integrate import odeint #function that returns dz/dtdef model (theta,t,b,g,l,m): theta1 = theta[0] theta2 = theta[1] dtheta1_dt = theta2 dtheta2_dt = -(b/m)*theta2 - (g/l)*math.sin(theta1) dtheta_dt = [dtheta1_dt,dtheta2_dt]…
16 Jan 2022 12:44 PM IST