YouTube Video Link % Program for forward kinematics of 2R robotic arm close all clear all clc % Inputs % Length in meters l1 = 2; l2 = 1.5; % Theta in degree theta1 = linspace(0,90,20); theta2 = linspace(0,90,20); ct = 1 for i = 1:length(theta1) THETA1 = theta1(i); for j = 1:length(theta2) THETA2 = theta2(j); x0 = 0; y0…
Abhijeet Shrawan Surkar
updated on 07 Aug 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 Abhijeet Shrawan Surkar (5)
Week 4-1D Element Creation Challenge
08 Apr 2023 12:48 PM IST
Project 1 - Parsing NASA thermodynamic data
Project 1 - Parsing Nasa Thermodynamic Data Function Codes % Enthalpy Calculation function function [H] = enthalpy(a1,a2,a3,a4,a5,a6,a8,a9,a10,a11,a12,a13,local_mid_temp,R,T) % finding enthalpy with low and temperature variables if T
09 Nov 2022 06:57 PM IST
Week 5 - Genetic Algorithm
% Function code genetic algorithm function [f] = stalagmite_fun(input_vector) fx = (sin(5.1*pi*input_vector(1)+0.5))^6; fy = (sin(5.1*pi*input_vector(2)+0.5))^6; fxx = exp((-4*log(2)*(((input_vector(1)-0.0667)^2)/0.64))); fyy = exp((-4*log(2)*(((input_vector(2)-0.0667)^2)/0.64))); f = -(fx.*fy.*fxx.*fyy); end % Genetic…
01 Nov 2022 07:46 AM IST
Week 4.1 - Solving second order ODEs
% Test Solving 2nd order ODE clear all close all clc % Inputs % l = length of pendulum in m % m = mass of pendulum in kg % b = damping coefficient (no unit) % g = Gravity in m/s^2, Length in m, Mass in kg l = 1; m = 1; b = 0.05; g = 9.81; % Initial Condition % Initial displacement is 0 % Initial velocity is 3 m/s theta_0…
29 Aug 2022 06:52 PM IST
Week 2- 2R Robotic Arm Challenge
YouTube Video Link % Program for forward kinematics of 2R robotic arm close all clear all clc % Inputs % Length in meters l1 = 2; l2 = 1.5; % Theta in degree theta1 = linspace(0,90,20); theta2 = linspace(0,90,20); ct = 1 for i = 1:length(theta1) THETA1 = theta1(i); for j = 1:length(theta2) THETA2 = theta2(j); x0 = 0; y0…
07 Aug 2022 01:25 PM IST