Aim: To Solve the Second Order Ordinary Differential Equation (ODE) & to simulate with an example of Simple Pendulum Description: Newton’s Second Law: In an inertial frame of reference, the vector sum of the forces F on an object is equal to the mass m of that object multiplied…
Sushil Deore
updated on 22 Sep 2020
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 Sushil Deore (5)
Week 6 - Data analysis
Title: Data analysis Aim: To write a script that does the data visualization, Compatability check and Basic Performance calculation. Objectives: Data visualization: Your script should take column numbers as the input and plot the respective columns as separate images Each file should be saved by…
11 Jan 2021 01:23 PM IST
Week 5 - Curve fitting
AIM: Program for linear, quadratic and cubic polynomial and checking results with the actual plot. Description: 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 subjects to constraints. Here, the curve for specific heat as a function…
07 Dec 2020 01:05 PM IST
Week 3 - Solving second order ODEs
Aim: To Solve the Second Order Ordinary Differential Equation (ODE) & to simulate with an example of Simple Pendulum Description: Newton’s Second Law: In an inertial frame of reference, the vector sum of the forces F on an object is equal to the mass m of that object multiplied…
22 Sep 2020 04:42 PM IST
2R Robotic Arm Simulator using Python
Aim: To create a simulation of forward Kinematic motion of 2R robotic arm using python 3 Description: Kinematics: A Branch of mechanics that describe the motion of bodies without considering forces. Forward kinematics: The Forward kinematics of a robot is the position and orientation of manipulator from its joint…
04 Jul 2020 07:13 PM IST
Code that can solve an Otto cycle and make plots for it
# otto cycle simulator import matplotlib.pyplot as plt import math def engine_kinemetics( bore,stroke, con_rod,cr,starting_crank,ending_crank): # geometric parameters a=stroke/2 R=con_rod/a num_values = 20 s_crank=math.radians(starting_crank) e_crank=math.radians(ending_crank) v_s = (math.pi/4) * pow(bore,2) * stroke v_c…
09 Jun 2019 09:39 AM IST