Project-1 …
Ayush Vishwakarma
updated on 11 Feb 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 Ayush Vishwakarma (8)
Python Challenge - Air standard Cycle
Air Standard Cycle Project Aim - Write code that can solve an otto cycle and make plots for it. Here are the requirements Your code should create a PV diagram You should output the thermal efficiency of the engine. Solution: The thermodynamic cycle we are going to write code is used in an internal…
03 Jun 2022 06:40 AM IST
Python Challenge - Solving second order ODEs
Second-order ODE Project Aim - write a program that solves the following ODE. This ODE represents the equation of motion of a simple pendulum with damping. Solution: In this project, we will write the code for a simple pendulum with spring, mass, and damper system by a second-order ODE as The Simple Pendulum: We…
03 Jun 2022 06:39 AM IST
Python Challenge - Curve fitting
Curve Fitting Objectives: Fit a linear and cubic polynomial for a given data and to get the best fit out of two fits. To get a perfect curve fit. Solution: Curve fitting is a process of constructing a curve, a mathematical model which possesses the closest proximity to the actual series of data with the slightest…
03 Jun 2022 06:38 AM IST
Python Project- Data analysis
Data Analysis Aim: To write a Python Program which reads the engine output parameter file and performs the required objectives Data visualizer Your script should take column numbers as the input and plot the respective columns as separate images Each file should be saved by the name of the column The plot labels…
03 Jun 2022 06:38 AM IST
MATLAB Challenge - 2R Robotic Arm Challenge
%Inputs l1 = 1; l2 = 0.5; theta1 = linspace(0,90,10); theta2 = linspace(0,90,10); ct = 1; for i = 1:length(theta1) THETA1 = theta1(i); for j = 1:length(theta2) THETA2 = theta2(j); x0 = 0; y0 = 0; x1 = l1*cosd(THETA1); y1 = l1*sind(THETA1); x2 = x1 + l2*cosd(THETA2); y2 = y1 + l2*sind(THETA2); %Plotting plot([x0,x1],[y0,y1],[x1,x2],[y1,y2],'linewidth',3)…
11 Feb 2022 05:39 AM IST
MATLAB Challenge - Genetic Algorithm
Genetic Algorithm Aim: To understand the concept of genetic algorithm and calculate the global maxima using the stalagmite function. Questions to be answered Write a code in MATLAB to optimize the stalagmite function and find the global maxima of the function. Clearly explain the concept of genetic algorithm…
11 Feb 2022 05:39 AM IST
MATLAB Challenge - Solving second order ODEs
Motion/Animation is in drive link attached at last. Second-order ODE Project Aim - write a program that solves the following ODE. This ODE represents the equation of motion of a simple pendulum with damping. Solution: In this project, we will write the code for a simple pendulum with a spring, mass, and damper system…
11 Feb 2022 05:37 AM IST