close all clear all clc % Program to design a 2R Robotic Arm to determine it's workspace % Given Data: x=0; % 'x' co-ordinate for initial position of arm y=0; % 'y' co-ordinate for initial position of arm L1=10; % Length 'L1' for robotic arm L2=5; % Length 'L2' for manipulator arm a1=linspace(0,90,10); % Angle 'a1' for…
JASON JOHN DEVARAJ
updated on 16 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 JASON JOHN DEVARAJ (8)
Project
Q 1. Carry out a system-level simulation of an all-terrain vehicle. Prepare a technical report explaining the model properties & comments on the results. ANS. In this model, the components present are as follows : Brake and throttle input signal : No brake is provided.…
05 Feb 2022 08:07 AM IST
Week - 4
Q1. Implement control logic of a “washing machine” using Stateflow as per given sequence: If the power supply is available, the system gets activated If the Water supply is not available, stop the process & indicate through LED Soaking time should be 200s followed by Washing time of 100s. Then…
02 Feb 2022 12:47 PM IST
Week -2
Make a Simulink model of Doorbell using solenoid block with the following details: In the above arrangement, when the switch is closed the electromagnet receives electrical power from the battery and pulls the metal arm to hit the bell producing sound. Create a situation where the switch is closed for 2…
30 Jan 2022 01:45 PM IST
Project 2 - Rankine cycle Simulator
Rankine cycle The Rankine cycle or Rankine Vapor Cycle is the process widely used by power plants such as coal-fired power plants or nuclear reactors. In this mechanism, a fuel is used to produce heat within a boiler, converting water into steam which…
24 Jan 2022 01:08 PM IST
Project 1 - Parsing NASA thermodynamic data
Project 1 - Parsing NASA thermodynamic data Q1. Write a function that extracts the 14 co-efficients and calculates the enthalpy, entropy and specific heats for all the species in the data file. Ans. …
23 Jan 2022 12:25 PM IST
Week 4.1 - Genetic Algorithm
% MATLAB Code to optimise the stalagmite function and find the global % maxima of the function. % Stalagmite function function[z] = stalagmite(input_vector) % Defining Objective Function x = input_vector(1); % defining inputs x y = input_vector(2); % defining inputs y % Formula % z = -(f1x*f2x*f1y*f2y); % Calculating values…
22 Jan 2022 07:50 AM IST
Week 3 - Solving second order ODEs
close all clear all clc % Defining the input data for the simple pendulum b = 0.01; %Damping co-efficient g = 9.81; %Acceleration due to gravity (Unit - m/s2) l = 1; %Length of the pendulum (Unit - m) m=0.1; %Mass of the pendulum (Unit - kg) % Defining the initial condition in order to solve the 2nd ODE which is % represented…
19 Jan 2022 01:47 PM IST
Week 2- 2R Robotic Arm Challenge
close all clear all clc % Program to design a 2R Robotic Arm to determine it's workspace % Given Data: x=0; % 'x' co-ordinate for initial position of arm y=0; % 'y' co-ordinate for initial position of arm L1=10; % Length 'L1' for robotic arm L2=5; % Length 'L2' for manipulator arm a1=linspace(0,90,10); % Angle 'a1' for…
16 Jan 2022 01:50 PM IST