Menu

Executive Programs

Workshops

Projects

Blogs

Careers

Student Reviews



More

Academic Training

Informative Articles

Find Jobs

We are Hiring!


All Courses

Choose a category

Loading...

All Courses

All Courses

logo

Shabarish P R

Passionate Aerospace Engineer interested in Applied Mathematics, Computational Mechanics, Coding and Cooking

Introduction

Currently Pursuing Masters in Computational Mechanics at Ecole Centrale de Nantes.Previously worked for Safran Enginnering Services for 3 Years.Completed my Bachelor of Aeronautical Engineering under Visveshvaraya Technological University.

21 Projects

2R Robotic Arm Challenge, Matlab

Objective:

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,…

calendar

20 Jul 2018 04:55 AM IST

    Read more

    Program to perform CURVE FITTING of the Cubic Order for the Data of Temperature VS Specific Heat for a given Fluid

    Objective:

    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…

    calendar

    07 Jun 2018 05:55 AM IST

    • MATLAB
    Read more

    Program to Calculate the Drag Force Against a Cyclist

    Objective:

    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…

    calendar

    28 Jun 2018 09:18 AM IST

      Read more

      Flow over Bicycle

      Objective:

      %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…

      calendar

      07 Jun 2018 05:55 AM IST

        Read more

        Parsing NASA Thermodynamic Data

        Objective:

        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…

        calendar

        21 Jul 2018 05:30 AM IST

          Read more

          Constraint Minimization - Pen and Paper Calculation

          Objective:

          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…

          calendar

          13 Sep 2018 01:50 PM IST

            Read more

            Program to Create Row and Column Vectors

            Objective:

            %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)

            calendar

            28 Jun 2018 09:18 AM IST

              Read more

              Kinematics of a 2R Robotic Arm Python

              Objective:

              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…

              calendar

              17 Jul 2018 06:25 AM IST

                Read more

                Python Challenge Constraint Minimization - Pen and Paper Calculation

                Objective:

                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  

                calendar

                13 Sep 2018 01:58 PM IST

                  Read more

                  Simulation of Flow over Bicycle

                  Objective:

                  %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…

                  calendar

                  28 Jun 2018 09:18 AM IST

                    Read more

                    Curve Fitting Problem Python

                    Objective:

                    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…

                    calendar

                    20 Jul 2018 06:28 AM IST

                      Read more

                      Data Analysis Python

                      Objective:

                      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…

                      calendar

                      20 Jul 2018 06:18 AM IST

                        Read more

                        Matrix-Matrix Multiplication and Matrix-Vector Multiplication using C++

                        Objective:

                        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…

                        calendar

                        07 Aug 2018 10:18 AM IST

                          Read more

                          Kinematics of a 2R Robotic Arm Python

                          Objective:

                          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…

                          calendar

                          20 Jul 2018 06:41 AM IST

                            Read more

                            Parsing NASA thermodynamic data

                            Objective:

                            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…

                            calendar

                            20 Jul 2018 05:30 AM IST

                              Read more

                              matrix-matrix multiplication and matrix-vector multiplication in c

                              Objective:

                              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  

                              calendar

                              07 Aug 2018 10:25 AM IST

                                Read more

                                Flow Over a Bicycle

                                Objective:

                                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 …

                                calendar

                                18 Jul 2018 06:43 AM IST

                                  Read more

                                  Flow Over Bicycle Python

                                  Objective:

                                  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…

                                  calendar

                                  20 Jul 2018 06:43 AM IST

                                    Read more

                                    Matlab Kinematics of a 2R Robotic Arm

                                    Objective:

                                    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,…

                                    calendar

                                    18 Jul 2018 06:30 AM IST

                                      Read more

                                      Simulation of OTTO CYCLE and calculation of its Thermal Efficiency Using Python

                                      Objective:

                                      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.…

                                      calendar

                                      20 Jul 2018 06:38 AM IST

                                        Read more

                                        Simulation of OTTO CYCLE and calculation of its Thermal Efficiency

                                        Objective:

                                        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 …

                                        calendar

                                        01 Jul 2018 09:57 AM IST

                                          Read more
                                          Showing 1 of 21 projects

                                          Schedule a counselling session

                                          Please enter your name
                                          Please enter a valid email
                                          Please enter a valid number

                                          Similar Profiles

                                          Apoorv Ranjan
                                          Apoorv Ranjan

                                          Ladder of success cannot be climbed with hands in pocket.

                                          Pruthvi Jagadeesh GK
                                          Pruthvi Jagadeesh GK

                                          The Future in Motion

                                          Krantiveer .
                                          Krantiveer .

                                          Give more than what you get you will get more than what you gave