https://youtu.be/UcAJvRuRb_Y clear all close all clc % Solving a second order ODE which defines the motion of a pendulum % Inputs b = 0.005; g = 9.81; l = 1; m = 1; ct = 1; % Initial condition theta_0 = [0;3]; % Time points t_span = linspace(0,20,500); % Solving ODE [t,results] = ode45(@(t,theta) ode_func(t,theta,b,g,l,m),t_span,theta_0);…
Ananda Krishnan B
updated on 02 Mar 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 Ananda Krishnan B (18)
Week 10- Assembly Workbench
QUICK RETURN MECHANISM Final Assembly In Various Orientations CV JOINT Final Assembly In Various Orientations
01 Aug 2022 08:02 PM IST
Week 9 - Project - A pillar Design with Master Section
PROJECT PRESENTATION
28 Jul 2022 02:04 PM IST
Week 9 - Project 1 - Door Trim Lower with Engineering Features
REPORT Draft Analysis Draft allows a part to release from the mold. Draft is required on all parts in the direction of the mold movement in order to allow parts to release or eject from the mold properly. Draft is the angle in the…
26 Jul 2022 07:21 AM IST
Week 8 - Challenge 1 - Base Bracket Design
REPORT Draft Analysis Draft allows a part to release from the mold. Draft is required on all parts in the direction of the mold movement in order to allow parts to release or eject from the mold properly. Draft is the angle in the part is tapered to allowed it to release. As the part cools it tends to shrink to the core…
14 Jul 2022 09:39 AM IST
Week - 4
REPORT Control logic of a Washing…
10 Jun 2022 10:37 AM IST
Week -2
REPORT …
02 May 2022 10:26 AM IST
Project 2 - Rankine cycle Simulator
% Program For Rankine Cycle Simulator clear all close all clc fprintf(' Rankine Cycle Simulator \n') fprintf('Process 1-2 Isentropic Expansion In Turbine \n') fprintf('Process 2-3 Isobaric Heat Rejection In Condenser \n') fprintf('Process 3-4 Isentropic Compression In Pump \n') fprintf('Process 4-1 Isobaric Heat Addition…
05 Apr 2022 08:49 PM IST
Project 1 - Parsing NASA thermodynamic data
Main Program clear all close all clc % Universal gas constant (J/mol-K) R = 8.314 ; number_of_species = 53; % Opening file from directory f1 = fopen('THERMO.dat','r'); fgetl(f1) % Skipping the first line. tline = fgetl(f1); % Storing the second line in a variable tline A = strsplit(tline,' '); global_low_temp = str2num(A{2});…
25 Mar 2022 06:16 PM IST
Week 3 - Solving second order ODEs
https://youtu.be/UcAJvRuRb_Y clear all close all clc % Solving a second order ODE which defines the motion of a pendulum % Inputs b = 0.005; g = 9.81; l = 1; m = 1; ct = 1; % Initial condition theta_0 = [0;3]; % Time points t_span = linspace(0,20,500); % Solving ODE [t,results] = ode45(@(t,theta) ode_func(t,theta,b,g,l,m),t_span,theta_0);…
02 Mar 2022 01:36 PM IST
Week 2- 2R Robotic Arm Challenge
https://youtu.be/yQGrYpPkBxo clear all close all clc % Forward Kinematics Of A 2R Robotic Arm % 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); % Coordinates x0 = 0; y0 = 0; x1 = l1*cosd(THETA1);…
19 Feb 2022 01:31 PM IST