Menu

IIT Certification 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

HRISHIKESH KATKAR

Think Different

Skills Acquired at Skill-Lync :

  • MATLAB-BASICS
  • SIMULINK-BASICS
  • HEV-FUNDAMENTALS
  • MATLAB
  • HEV
  • BATTERY-TECHNOLOGY
  • MODEL-BASED-DEVELOPMENT
  • ADAS-BASICS

Introduction

Mechanical Engineer

18 Projects

Week 2- 2R Robotic Arm Challenge

Objective:

https://youtu.be/bw4TaMLm48s % Forward kinematics of a 2R robotic arm manipulator clear all close all clc %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); x0 = 0 y0 = 0 x1 = L1*cosd(THETA1);…

calendar

06 Jan 2022 11:03 AM IST

    Read more

    Otto cycle engine kinematics and Air standard efficiency using Matlab.

    Objective:

    % Otto cycle using matlab. % inputs gamma = 1.4 t3 = 2300 % state variables p1 = 101325 t1 = 500 % engine geometric parameters bore = 0.1; stroke = 0.1; con_rod = 0.15; cr = 12; a = stroke/2; R = con_rod/a; % calculating the swept volume and clearance volume v_s = pi/4*bore^2*stroke; v_c = v_s/(cr-1); v1 = v_s + v_c v2…

    calendar

    13 Jan 2022 12:04 PM IST

      Read more

      Week 3 - Solving second order ODEs

      Objective:

      https://youtu.be/2MylDz4AClU clear all close all clc %damping coefficient b = 0.05 %length of the pendulum in mm l = 1 %mass of the ball in kg m = 1 %gravity in m/s^2 g = 9.81 %initial condition theta_0 = [0;3]; %time points t_span = linspace(0,20,200); % solve ode [t,results] = ode45(@(t,theta)ode_func(t,theta,b,l,m,g),t_span,theta_0);…

      calendar

      16 Jan 2022 07:01 PM IST

        Read more

        Week 4.1 - Genetic Algorithm

        Objective:

          % MATLAB code to optimise the stalagmite function and find the global % maxima. clear all close all clc % defining our search space x = linspace(0,0.6,150); y = linspace(0,0.6,150); num_cases = 50; % creating a 2 Dimensional space [xx,yy] = meshgrid(x,y); % Evaluating the stalagmite function for i = 1:length(xx)…

        calendar

        03 Feb 2022 06:27 AM IST

        • MATLAB
        Read more

        Project 1 - Parsing NASA thermodynamic data

        Objective:

            % Project 1 Parsing NASA thermodynamic data clear all close all clc f1 = fopen('THERMO.dat','r'); for i = 1:5 a = fgetl(f1); end for z = 1:53 Header = fgetl(f1); b = strsplit(Header,' '); % split the header line species_name = b{1}; local_low_temp = str2double(b{end-3}); local_High_temp = str2double(b{end-2});…

        calendar

        15 Feb 2022 12:04 PM IST

          Read more

          Week -2

          Objective:

          Aim : Make a simulink model of Doorbell using solenoid block. Report: 1.In simulink Model of door bell using solenoid block,we need a switch,solenoid,battery and a plunger.                                2. Now first a 'solenoid block' is taken to represent a solenoid in the model, then to represent battery we have taken…

          calendar

          07 Mar 2022 06:33 PM IST

            Read more

            Week-4 Challenge WOT Condition Part-2

            Objective:

            ANS 1 Difference between mapped and dynamic model of engine: Powertrain Blockset provides two types of Engine models: mapped and dynamic. Mapped engines represent macro engine behavior as a set of lookup tables (brake torque, fuel flow, air mass flow, exhaust temperature, efficiency and emissions) as a function of commanded…

            calendar

            24 Apr 2022 04:15 AM IST

              Read more

              Week-3 Challenge: ADVISOR Tool

              Objective:

              ANS 1 CONCLUSION: Thus we can see that for 3 number of cycles at the given conditions, the vehicle can travel for only 41.1 km. * If we increse the number of cycles then the vehicle can travel above 45 km.   ANS 2 We can see that by increasing the battery capacity, the vehicle can travel for more than 53kms in the…

              calendar

              25 Apr 2022 05:04 AM IST

                Read more

                Week-6 Challenge: EV Drivetrain

                Objective:

                ANS 1 *Types of power converter circuits employed in an electric and HEVs- Power electronics is the application to control and conversion of electric power. A power converter is a process of converting electric energy  from one form to another. A power converter is an electromechanical device for converting electrical…

                calendar

                28 Apr 2022 04:39 AM IST

                Read more

                Week-7 Challenge: DC Motor Control

                Objective:

                ANS 1 The bipolar junction transmitor(BJT) when used for power switching applications, operates as an IGBT.Where it is conducting(BJT operating in the saturated region), a forward voltage vf is developed between collector and emitter. Therefore the IGBT block can be used to model the BJT device. The IGBT block doen not…

                calendar

                29 Apr 2022 04:40 AM IST

                  Read more

                  Week-11 Challenge: Braking

                  Objective:

                  ANS 1 We require some amount of power which is used for accelerating the vehicle and also for the braking of vehicle. Here we consider the drive cycle which is predefined . Workdone = kinetic energy = 0.5 * m *v^2 For calculating the energy- E =0.5*m*v^2 m = mass of the vehicle = 1000 kg v = velocity of the vehicle = Vf…

                  calendar

                  04 May 2022 03:10 AM IST

                  Read more

                  Week 1 Understanding Different Battery Chemistry

                  Objective:

                   ANS 1 Sr. No Battery type Electrode material Chemical reaction 1 LCO Lithium Cobalt oxide Cathode-Lithium cobalt oxide(LiCoO2). Anode – Graphite. At anode-LiC6 ->Li-+  +  e-  +  C6 At cathode – CoO2 + Li-+  + e- -> LiCO2 Complete –LiC6 + CoO2 -> C6 + LiCoO2 2 LMO…

                  calendar

                  06 May 2022 04:04 AM IST

                    Read more

                    Project-1: Powertrain for aircraft in runways

                    Objective:

                    ANS 1 1. Search and list out the total weight of various types of aircrafts.  Weight is a major factor in airplane construction and operation, and it demands respect from all pilots and particular diligence by all maintenance personnel.Excessive weight reduces the efficiency of an aircraft and the available safety…

                    calendar

                    07 May 2022 08:10 PM IST

                    Read more

                    Week 7 State of charge estimation

                    Objective:

                    Simulation of closed-loop BMS- The BMS model consist of a BMS ECU (electrical control unit) and a plant. The control unit with its various monitoring  and control algorithms is connected to a block with the representation of the battery pack and associated circuitry and peripherals.   The harness dashboard is…

                    calendar

                    12 May 2022 06:11 PM IST

                      Read more

                      Project 1 Mechanical design of battery pack

                      Objective:

                      To make the battery pack we have to first finalize the nominal voltage and capacity of the pack. Either it will be in terms of volt, mAh/Ah or Wh. The individual cell : ANR26650M1-B has Nominal voltage = 3.3 V Current capacity = 2.5 Ah So, let us assume that for 18 kwh battery pack we need supply voltage of 200 V and 90Ah.…

                      calendar

                      17 May 2022 05:16 AM IST

                        Read more

                        Project 2 Thermal modeling of battery pack

                        Objective:

                        Simulink Model- Circuit construction and working: In this ckt we use li-ion cell 1 to 10, temperature sensors, ambient temp block, state of charge estimation, scope, charge discharge profile given to ckt, from and goto block. Results: 1) Results at 300 k i.e 26.85 degree celcius 2) Results at 310k i.e 36.85 degree celsius…

                        calendar

                        18 May 2022 03:03 AM IST

                          Read more

                          Project 1 (Mini Project on Vehicle Direction Detection

                          Objective:

                          Development of MATLAB Simulink model as per requirement This is the main model subsystem that having two inputs SteeringWheel_YawDegreeInput and Camerainput_Roadsign entering into the Vehicle Detection Determination and one output Vehicle_Direction_indicator. There are 2 requirements are designed in two subsystem- Requirement…

                          calendar

                          30 May 2022 11:14 AM IST

                          Read more

                          Project 2 Adaptive Cruise Control

                          Objective:

                          Adaptive cruise control- Developing Adaptive Cruise Control feature- Requirement 1– Lead Vehicle: Lead Vehicle is a vehicle which is driving in the road ahead of our drive vehicle. Two input signals (Signal Name: CameraInput_LeadVehicle & RadarInput_LeadVehicle). Ideally sensor fusion techniques will be…

                          calendar

                          31 May 2022 05:53 PM IST

                            Read more
                            Showing 1 of 18 projects

                            5 Course Certificates

                            certificate

                            Introduction to Battery Technology for Electric Vehicle

                            CertificateIcon
                            Certificate UID: 3zomwxi7ahcrk9nu
                            View Certificate
                            certificate

                            Introduction to Hybrid Electric Vehicle using MATLAB and Simulink

                            CertificateIcon
                            Certificate UID: 6juqzysh3wtlxokg
                            View Certificate
                            certificate

                            Introduction to Model-Based Development using MATLAB and Simulink

                            CertificateIcon
                            Certificate UID: hfqtxzvnrs2dckoy
                            View Certificate
                            certificate

                            MATLAB for Mechanical Engineers

                            CertificateIcon
                            Certificate UID: z1pkcexdvfn8ir60
                            View Certificate
                            certificate

                            Introduction to Physical Modeling using Simscape

                            CertificateIcon
                            Certificate UID: etkzp5lhf7rvcdxy
                            View Certificate
                            Showing 1 of 5 certificates

                            1 Workshop Certificates

                            certificate

                            An Insight into IPG CARMAKER

                            CertificateIcon
                            Certificate UID: vhjtwb6z8n
                            View Certificate
                            Showing 1 of 1 certificates

                            Academic Qualification

                            B.E

                            Jaysingpur College, Jaysingpur.

                            03 Aug 2018 - 20 Aug 2021

                            12th

                            Dr. J. J. Magdum College of Engineering

                            01 Jul 2015 - 01 Jul 2018

                            10th

                            Ajara

                            01 Jun 2014 - 15 Mar 2015

                            Schedule a counselling session

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

                            Here are the courses that I have enrolled

                            coursecard
                            5

                            11 Hours of Content

                            coursecard
                            4.7

                            5 Hours of Content

                            coursecard
                            Recently launched

                            18 Hours of Content

                            coursecard
                            Recently launched

                            21 Hours of Content

                            coursecard
                            Recently launched

                            10 Hours of Content

                            coursecard
                            4.9

                            12 Hours of Content

                            coursecard
                            Recently launched

                            16 Hours of Content

                            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