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

Omkar Madhavi

Learning new skills to climb the hill of Success.

Skills Acquired at Skill-Lync :

  • SIMULINK-BASICS
  • HEV-FUNDAMENTALS
  • MATLAB
  • MATLAB-BASICS
  • HEV
  • BATTERY-TECHNOLOGY

Introduction

Student at 'Aissms IoIt, pune'. I have done two month training in 'FUJI Electric India pvt. Ltd.' and One month training in 'Transmission Substation Kandalgaon'.

21 Projects

Project 1 - Creation of user defined data type to implement the user interfaces for working with ‘Set’ (Mathematical Set theory) using Linked List

Objective:

Code: #include #include // Function for finding unionsvoid findUnion(int list1[], int size1, int list2[], int size2, int result[], int *resultSize) {    int i, j;    *resultSize = 0;     // Add elements from the first list to the result    for (i = 0; i < size1>        result[*resultSize] = list1[i];        (*resultSize)++; …

calendar

04 Aug 2023 06:26 AM IST

    Read more

    Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear

    Objective:

    Code: #include #include #include enum GearState {    RETRACTED,    EXTENDED,    TRANSITIONING}; // switch statesenum SwitchState {    OPEN,    CLOSED}; // Function to simulate hydraulic pump controlvoid hydraulicControl(enum GearState *gear, const char *action) {    if (action == "extend") {        if (*gear == RETRACTED)…

    calendar

    08 Aug 2023 01:13 PM IST

      Read more

      Project 3

      Objective:

      Code: #include #include #include using namespace std; enum class FuelType {    PETROL,    DIESEL,    GAS,    ELECTRIC}; class Vehicle {protected:    string make_;    string model_;    int year_;    int odometer_; public:    Vehicle(string make, string model, int year, int odometer)        : make_(make), model_(model),…

      calendar

      18 Aug 2023 04:34 PM IST

        Read more

        Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol

        Objective:

        Code: FOR MASTER :  //MASTER Arduino  #include void setup(){  pinMode(A1, INPUT);  Serial.begin(9600);  Wire.begin();  } void loop(){  float value=analogRead(A1);  signed int voltage=(value*5)/1024; // int temp=(voltage-0.5)*100;  Wire.beginTransmission(1);  Wire.write(voltage);  Wire.endTransmission();  delay(50);}  …

        calendar

        26 Aug 2023 04:20 PM IST

          Read more

          Project 1 - Controlling a DC motor using PWM and monitoring its Running status

          Objective:

          Code:     /*  * GccApplication2.cpp  *  * Created: 05-09-2023 22:05:11  * Author : OMKAR  */    #include //we are using I/O registers of AVR #define F_CPU 16000000L // define the crystal frequency #include "avr/interrupt.h" // we are using external interrupt pin #include // delay function purpose #define sw_dir (PIND &…

          calendar

          06 Sep 2023 05:06 AM IST

            Read more

            Project 2 - Measuring the distance of an object using ultrasonic sensor and also smoothen the sensor data using moving average filter

            Objective:

            Code: //Slave #include     int sig = 2;   //Assigning pin2 as sig for readabilty int duration, inches, cm;  static int avg;    void setup() { Serial.begin(9600); Wire.begin(8);    Wire.onRequest(distance);  }   void loop() { delay(50); }   void distance()     { pinMode(sig, OUTPUT);    digitalWrite(sig, LOW);  delay(5);…

            calendar

            09 Sep 2023 08:33 AM IST

              Read more

              Project 1 - V&V SW Analysis - I

              Objective:

              Ans: This test plan outlines the blackbox testing approach for a new mobile phone currently under development. The purpose of this test plan is to ensure that the mobile phone meets the specified requirements and functions as expected from a user's perspective. Objectives To verify that the mobile phone meets the defined…

              calendar

              10 Sep 2023 06:49 AM IST

                Read more

                Project 1 - Implement a fully functional Queue in C language using Linked lists

                Objective:

                Header, source file and project result attachted please cheack.

                calendar

                18 Oct 2023 03:23 PM IST

                  Read more

                  Week-3 Challenge: ADVISOR Tool

                  Objective:

                  1) For EV_defaults_in file, if cargo mass is 500 kg with all other default conditions, can the vehicle travel for 45 km with FTP drive cycle? Conclude your observations.   Observation: In this all values are default only cargo mass is change to 500kg before adding or increasing cargo mass distance traveled by…

                  calendar

                  31 Oct 2023 06:17 PM IST

                    Read more

                    Week-4 Challenge WOT Condition Part-2

                    Objective:

                      1) What is the difference between mapped and dynamic model of engine, motor and generator? How can you change model type?   1. Engine Models: Mathematical models: These models are used to represent the behavior of engines in a mathematical form. They can be either empirical (based on experimental data)…

                    calendar

                    05 Nov 2023 01:42 PM IST

                    • HEV
                    Read more

                    Project 2 - Measuring distance of an object using ultrasonic sensor (HC-SR04)

                    Objective:

                    /*  * GccApplication3.cpp  *  * Created: 23-11-2023 12:21:51 PM  * Author : OMKAR  */    #define F_CPU 8000000UL #include <avr/io.h> #include <avr/interrupt.h> #include <util/delay.h> #include <string.h> #include <stdlib.h>     #define LCD_Data_Dir…

                    calendar

                    23 Nov 2023 12:15 PM IST

                      Read more

                      Week-6 Challenge: EV Drivetrain

                      Objective:

                      1.  Which types of power converter circuits are employed in electric and hybrid electric vehicle?        DC-DC Converters: Boost Converters: Increase the voltage from the low-voltage battery to the high-voltage level required by the electric motor. Buck Converters: Decrease the voltage for accessories or subsystems that…

                      calendar

                      23 Nov 2023 01:34 PM IST

                      Read more

                      Week-7 Challenge: DC Motor Control

                      Objective:

                      1) 1. A. Explain a MATLAB demo model named ‘Speed control of a DC motor using BJT H-bridge’.     B. Comment on the armature current shoot-up from the scope results.     C. Refer to the help section of ‘The Four-Quadrant Chopper DC Drive (DC7) block’. Compare it with the…

                      calendar

                      25 Nov 2023 04:08 PM IST

                      Read more

                      Week-11 Challenge: Braking

                      Objective:

                      1)   To calculate the energy required for braking during a defined driving cycle, you would need information about the vehicle's mass, velocity profile during the driving cycle, and braking efficiency. The basic formula to calculate kinetic energy is: Kinetic Energy= ½ mv2 where: m is the mass of the vehicle, v is the…

                      calendar

                      26 Nov 2023 11:10 AM IST

                      Read more

                      Project-1: Powertrain for aircraft in runways

                      Objective:

                        Part A:   1. Search and list out the total weight of various types of aircrafts.    2. Is there any difference between ground speed and air speed?   3. Why is it not recommended to use aircraft engine power to move it on the ground at Airport?    4. How an aircraft is pushed to runway…

                      calendar

                      28 Nov 2023 12:24 PM IST

                        Read more

                        Final Project: Design of an Electric Vehicle

                        Objective:

                        Q) Create a MATLAB model of electric car which uses a battery and a DC motor. Choose suitable blocks from Powertrain block set. Prepare a report about your model including following: Objectives:         1. System level configurations        2. Model parameters    …

                        calendar

                        18 Dec 2023 06:00 PM IST

                        Read more

                        Project 1 - Wiper control system and Vehicle speed calculation for ABS using Wheel Speed sensor

                        Objective:

                        1) Wiper control system Develop Simulink/state flow model for wiper control system based on the given conditions. Description of Challenge: If the density of the rain is low, then wiper rotates with low speed & the output signal should be 100rpm If the density of the rain is medium, then wiper rotates with medium speed…

                        calendar

                        23 Jan 2024 05:13 PM IST

                          Read more

                          Project 2 - Development of TFT Cluster Speedometer Software Component

                          Objective:

                          1) Development of TFT Cluster Speedometer Software Component Cluster Instrument receives the signals from other ECU via CAN bus interface. It also receives commands from the driver via steering wheel buttons. The signals are then processed by the Cluster ECU, after which the Cluster ECU may send the vehicle information…

                          calendar

                          24 Jan 2024 10:46 AM IST

                            Read more

                            Project 2 - V&V SW Analysis II

                            Objective:

                            Perform Static Code Review Analysis for “C:\**\LDRA_workarea\Examples\C_Testbed_examples\Testrain\Testrain.c” Generate Code review report and upload them.     Perform Integration testing by including all the .C files available in the folder location C:\**\LDRA_workarea\Examples\Toolsuite\Cashregister_6.0\…

                            calendar

                            25 Jan 2024 05:30 AM IST

                              Read more

                              Project 1 - Develop the full featured char driver as a loaded module

                              Objective:

                                Overview of the Project:  Kconfig build system The module should be added to the Kernel configuration Kconfig build system with tristate option. Char driver should be of Open --> Only one user is allowed to open the device. Other users should be blocked. Read and write operation --> store the data to the dynamically…

                              calendar

                              15 Feb 2024 09:52 AM IST

                                Read more

                                Project 2 - Design and develop the web based Temperature control system using Beagle Bone Black.

                                Objective:

                                Overview of the Project:  Device Driver Write the device driver for MCP9808 Temperature Sensor. Probe function: Register the Platform device under driver/misc. Read function: It should send the i2c message to read the data from sensor and copy it to the user space. Alert pin connected to BBB as gpio interrupt. The temp…

                                calendar

                                21 Feb 2024 06:40 PM IST

                                Read more
                                Showing 1 of 21 projects

                                7 Course Certificates

                                certificate

                                Software Verification and Validation and System Testing for Model-Based Development

                                CertificateIcon
                                Certificate UID: b46fk1z5gjidyw9v
                                View Certificate
                                certificate

                                Embedded Programming Essentials

                                CertificateIcon
                                Certificate UID: 2wgl7byehmptfanz
                                View Certificate
                                certificate

                                Fundamentals of Embedded Systems

                                CertificateIcon
                                Certificate UID: i72tln34mwc9dsr8
                                View Certificate
                                certificate

                                Software Verification and Validation and System Testing for Hand Code

                                CertificateIcon
                                Certificate UID: gakpuoqfem69lic0
                                View Certificate
                                certificate

                                C++ Essentials

                                CertificateIcon
                                Certificate UID: 8oe5snac4wbj2rdf
                                View Certificate
                                certificate

                                AVR Bare Metal Programming- Live Sessions

                                CertificateIcon
                                Certificate UID: 1kjwg6ay9dop8nbz
                                View Certificate
                                certificate

                                Introduction to Hybrid Electric Vehicle using MATLAB and Simulink

                                CertificateIcon
                                Certificate UID: 5mnuvpfxo3g2qer4
                                View Certificate
                                Showing 1 of 7 certificates

                                Academic Qualification

                                B.Tech

                                Aissms IoIT , pune

                                18 Mar 2020 - 08 Mar 2023

                                Diploma

                                institute of petrochemical engineering

                                15 Mar 2017 - 11 Mar 2020

                                10th

                                Ashokdada sabale vidyalaya, mangaon.

                                13 Mar 2013 - 12 Mar 2014

                                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

                                35 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
                                Recently launched

                                13 Hours of Content

                                coursecard
                                Recently launched

                                18 Hours of Content

                                coursecard
                                Recently launched

                                19 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