We code to Define the workspace of the Kinematic Motion of the 2R Robotic Arm. Description: We basically define the workspace of the 2R Robotic Arm, by workspace we mean the possible locations that the robotic arm can resch, or in other words the total area that the robotic arm can cover when in motion is what is…
Shabarish P R
updated on 20 Jul 2018
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 Shabarish P R (21)
Python Challenge Constraint Minimization - Pen and Paper Calculation
The Solution to the Problem is present in the link provided as below: https://projects.skill-lync.com/projects/Constraint-Minimization-Pen-and-Paper-Calculation-24019
13 Sep 2018 01:58 PM IST
Constraint Minimization - Pen and Paper Calculation
Question: Minimize the following function F(x,y) = 5 - (x - 2)^2 - 2(y - 1)^2 subject to the following constraint λ = x + 4y = 3 Solution: We introduce a new function: G(x, y) Therefore, G(x, y) = 5 - [x - 2]^2 - 2[y - 1]^2 + λ[x + 4y -3] Conditions for Minimization: δG/δx = 0 δG/δy…
13 Sep 2018 01:50 PM IST
matrix-matrix multiplication and matrix-vector multiplication in c
The Project is Present in the below link, please check:https://projects.skill-lync.com/projects/Matrix-Matrix-Multiplication-and-Matrix-Vector-Multiplication-using-C-35208
07 Aug 2018 10:25 AM IST
Matrix-Matrix Multiplication and Matrix-Vector Multiplication using C++
The Code which is presented below can multiply both Matrix-Matrix as well as Matrix-Vector: Firstly, the code checks for the size of the matrix and verifies if the Matrix-Matrix or Matrix-Vector pair is compatible for multiplication: If the Matrix-Matrix or Matrix-Vector pair are compatible, the code goes to next step…
07 Aug 2018 10:18 AM IST
Parsing NASA Thermodynamic Data
NASA came up with polynomials that can be used to evaluate thermodynamic properties such as Cp, H and S using polynomials. They have also documented the co-efficients that are required to evaluate these polynomials for 1000+ species.I wrote a program that parse this file and make use of the information.The data is…
21 Jul 2018 05:30 AM IST
Flow Over Bicycle Python
Program to Calculate the Drag Force acting on a Cyclist Description: In this code we calculate the Drag Force that Acts against a Cyclist, inorder to do that, we use the formula as given below: Fd = (0.5*Rho*A*Cd.*V.^2) where:Fd = Drag Force in NewtonRho = Density of Air in Kg/m^3A = Area occupied by the…
20 Jul 2018 06:43 AM IST
Kinematics of a 2R Robotic Arm Python
We code to Define the workspace of the Kinematic Motion of the 2R Robotic Arm. Description: We basically define the workspace of the 2R Robotic Arm, by workspace we mean the possible locations that the robotic arm can resch, or in other words the total area that the robotic arm can cover when in motion is what is…
20 Jul 2018 06:41 AM IST
Simulation of OTTO CYCLE and calculation of its Thermal Efficiency Using Python
Code to Simulate the PV diagram of an OTTO CYCLE, and to calculate the THERMAL EFFICIENCY with the results obtained. An Otto cycle is an idealized Thermodynamic Cycle that describes the functioning of a typical Spark Ignition Piston Engine.It is the thermodynamic cycle most commonly found in automobile engines.…
20 Jul 2018 06:38 AM IST
Curve Fitting Problem Python
Curve Fitting the Data, The Data consists of values of Cp and its corresponding Temperature Values for a given Species What does popt and pcov mean ?Solution:When we plot data, the data is defined by a function, this function can be linear (y = mx + c), quadratic (y = ax^2 + bx + c), cubic (ax^3 + bx^2 + cx + d), etc.By…
20 Jul 2018 06:28 AM IST
Data Analysis Python
Description: In the Code given below, we are provided with a \".out\" file, which contains the thermodynamic data of a given species, we are supposed to analyse the data, compare and plot the respective Properties against one another, for example: plot Pressure Vs Volume.In the Code, we first Perform the Compatibility…
20 Jul 2018 06:18 AM IST
Parsing NASA thermodynamic data
The Function that extracts the 14 Coefficients for a given species is as belowLOGIC : In this Function we use \"fopen\" to open a data file, \"fgetl\" is used to read a particular line, we can either store the line read into some variable or we may just read and skip the lines in the data file \"strsplit\", is…
20 Jul 2018 05:30 AM IST
2R Robotic Arm Challenge, Matlab
In this Code we explain the kinematics of a 2R Robotic Arm: Description: We basically define the workspace of the 2R Robotic Arm, by workspace we mean the possible locations that the robotic arm can resch, or in other words the total area that the robotic arm can cover when in motion is what is described in this code below,…
20 Jul 2018 04:55 AM IST
Flow Over a Bicycle
Program to Calculate Drag Force VS Velocity and Drag Force VS Drag Coefficient for various shapes Description: In this code we calculate the Drag Force that Acts against a Cyclist, inorder to do that, we use the formula as given below: Fd = (0.5*Rho*A*Cd.*V.^2) where:Fd = Drag Force in NewtonRho …
18 Jul 2018 06:43 AM IST
Matlab Kinematics of a 2R Robotic Arm
In this Code we explain the kinematics of a 2R Robotic Arm:Description: We basically define the workspace of the 2R Robotic Arm, by workspace we mean the possible locations that the robotic arm can resch, or in other words the total area that the robotic arm can cover when in motion is what is described in this code below,…
18 Jul 2018 06:30 AM IST
Kinematics of a 2R Robotic Arm Python
The Code Below Explains How we can simulate the Kinematic Motion of the 2R Robotic Arm. The Explanation about the concepts are given as comments within the program. # -*- coding: utf-8 -*- \"\"\" Created on Mon Jun 18 20:38:32 2018 @author: shabarish \"\"\" #Program to simulate the kinematics of a 2R Roboic Arm# #Import…
17 Jul 2018 06:25 AM IST
Simulation of OTTO CYCLE and calculation of its Thermal Efficiency
The Link below contains the Source Code:https://drive.google.com/open?id=1Ji-Yz8On0Ij4JPiGLMOzY7XuJMjQOZkc The Values assumed in the above source code are:gamma = 1.2;T1 = 500kT3 = 2300kP1 = 101325 paBore Diameter = 0.1 mStroke Length …
01 Jul 2018 09:57 AM IST
Simulation of Flow over Bicycle
%Program to Calculate the Drag Force Against a Cyclist%close allclear allclc %Inputs%Rho = 1.2; % DENSITY, Kg/m^3 %A = 1; % AREA, m^2 %V = [1:100]; % RANGE OF VELOCITIES, m/s %Cd = [1:100]; % RANGE OF DRAG COEFFICIENTS (Non Dimentional) % % Drag Force %Fd = (0.5*Rho*A*Cd.*V.^2);%Plotting%%Plot of Drag…
28 Jun 2018 09:18 AM IST
Program to Create Row and Column Vectors
%Program to Create Row and Column Vectors%close allclear allclc% Creation of a Row Vector %A = [1:10]B = [1 2 3 4 5]% Creation of Column Vector %E = [1;2;3;4;5]C = transpose(A)D = transpose (B)
28 Jun 2018 09:18 AM IST
Program to Calculate the Drag Force Against a Cyclist
Program to Calculate Drag Force VS Velocity and Drag Force VS Drag Coefficient for various shapes %Program to Calculate the Drag Force Against a Cyclist% close all clear all clc %Inputs% Rho = 1.2; % DENSITY, Kg/m^3 % A = 1; % AREA, m^2 % V = [1:100]; % RANGE OF VELOCITIES, m/s % Cd = [1:100]; % RANGE OF DRAG COEFFICIENTS…
28 Jun 2018 09:18 AM IST
Flow over Bicycle
%Program to Calculate the Drag Force Against a Cyclist%close allclear allclc %Inputs%Rho = 1.2; % DENSITY, Kg/m^3 %A = 1; % AREA, m^2 %V = [1:100]; % RANGE OF VELOCITIES, m/s %Cd = [1:100]; % RANGE OF DRAG COEFFICIENTS (Non Dimentional) % % Drag Force %Fd = (0.5*Rho*A*Cd.*V.^2);%Plotting%%Plot of Drag…
07 Jun 2018 05:55 AM IST
Program to perform CURVE FITTING of the Cubic Order for the Data of Temperature VS Specific Heat for a given Fluid
Program to perform CURVE FITTING of the Cubic Order for the Data of Temperature VS Specific Heat for a given Fluid %Program to Fit a Curve of the Cubic Order% clear all; close all; clc %Importing Data% Cp_data = load(\'data2\'); %Segregating Data% Temperature = Cp_data(:,1); Cp = Cp_data(:,2); %Performing CurveFit% Coeff…
07 Jun 2018 05:55 AM IST