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

Viraj Brid

Electrical Engineer

Skills Acquired at Skill-Lync :

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

Introduction

I completed my BE electrical from Finolex academy of management and technology,Ratnagiri in year 2019.I have work as Junior application Engineer-HMI Design in Johnson's Controls India from March 2020 to January 2021.I'm currently working as a PLC engineer in Dhruva Shipping Consultant,Ratnagiri,Maharashtra.

20 Projects

Week -2

Objective:

Aim: Make a Simulink model of Doorbell using solenoid block.   Working Principle:- The following diagram of doorbell consist of a solenoid, battery ang a switch. When switch is pressed(Closed circuit) current flows through the solenoid coil and it acts as a magnet. The magnetic field created attracts a flexible…

calendar

18 Feb 2022 09:23 AM IST

    Read more

    Week - 4

    Objective:

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

    calendar

    05 Mar 2022 06:48 AM IST

      Read more

      Project

      Objective:

      ATV:-   An all-terrain vehicle (ATV), also known as a light utility vehicle (LUV), a quad bike, or simply a quad, as defined by the American National Standards Institute (ANSI); is a vehicle that travels on low-pressure tires, with a seat that is straddled by the operator, along with handlebars for steering control.…

      calendar

      15 Mar 2022 05:50 PM IST

      • BIM
      • CAE
      • CFD
      • CSS
      • DEM
      • FEA
      • GIS
      • HEV
      Read more

      Project 1 (Mini Project on Vehicle Direction Detection

      Objective:

      Aim: Creating a Simulink model for ADAS feature- Vehicle direction detection as per given requirements.   Objectives- To create Simulink model for the given requirements. Create Simulink data dictionary and link it with the Simulink model. Set various configuration parameters such as solver settings, code generation,…

      calendar

      07 Jun 2022 07:01 AM IST

        Read more

        Project 2 Adaptive Cruise Control

        Objective:

        Aim- To create a Simulink model for ADAS- Adaptive Cruise Control System as per given requirements.   Objectives- To create Simulink model for the given requirements. Create Simulink data dictionary and link it with the Simulink model. Set various configuration parameters such as solver settings, code generation, coverage,…

        calendar

        08 Jun 2022 02:15 PM IST

          Read more

          Week-3 Challenge: ADVISOR Tool

          Objective:

          ADvance VehIcle SimulatOR- An advanced vehicle simulator model called ADVISOR hasbeen developed at the National Renewable EnergyLaboratory to allow system-level analysis and trade-offstudies of advanced vehicles. Because of ADVISOR's fastexecution speed and the open programming environment ofMATLAB/Simulink, the simulator…

          calendar

          17 Jun 2022 06:32 AM IST

          Read more

          Week-4 Challenge WOT Condition Part-2

          Objective:

          Q.1)What is the difference between mapped and dynamic model of engine, motor and generator? How can you change model type?  Mapped Engine: Mapped Engine is the default settings in powertrain blockset. It is used to measure to measure performance parameters of the vehicle by using standard lookup tables which are prefed…

          calendar

          20 Jun 2022 02:25 PM IST

          Read more

          Week-6 Challenge: EV Drivetrain

          Objective:

          Q1) Which types of power converter circuits are employed in electric and hybrid electric vehicle?    Following are the power converters used in EV and HEVs-   On board battery charger (AC-DC)- On board battery charger are used to charged the vehicle battery. This are typically AC-DC power converters.…

          calendar

          01 Jul 2022 05:30 AM IST

          Read more

          Week-7 Challenge: DC Motor Control

          Objective:

          Q.1) A. Explain a MATLAB demo model named ‘Speed control of a DC motor using BJT H-bridge’. The given model is for speed control of DC motor using BJT H-Bridge. The Bipolar Junction Transistor (BJT) when used for power switching applications, operates as an IGBT. When it is conducting (BJT operating in the…

          calendar

          03 Jul 2022 02:25 PM IST

          Read more

          Week-11 Challenge: Braking

          Objective:

          Q1)For a defined driving cycle, calculate the energy required for braking. Braking is one of the cause of the lost of energy in a vehicle.The amount of energy loss depends on the drive cycle. For a highway drive cycle braking loss is comparatively low as less braking is involved. In urban driving cycle braking losses are…

          calendar

          11 Jul 2022 01:22 PM IST

          Read more

          Project-1: Powertrain for aircraft in runways

          Objective:

          Part A- Q1) Search and list out the total weight of various types of aircrafts.  Aircraft Empty Weight (AEW) This is sometimes referred to as OEW – Operating Empty Weight and it is the weight of the aircraft with all its equipment on board but no fuel, no passengers or no cargo. Think of this like the aircraft…

          calendar

          16 Jul 2022 10:52 AM IST

          Read more

          Project 1- Traffic Jam Assistant Feature

          Objective:

          Traffic Jam Assistant Feature Introduction to the Feature: Traffic Jam Assistant is one of the most common feature in Advanced Driver Assistance System. Traffic Jam Assistant helps the driver arrive more relaxed at their destination, even in dense traffic or in traffic jams. As a partially automated comfort function, the…

          calendar

          23 Jul 2022 07:29 PM IST

            Read more

            Project 2-Highway Assistant-Lane Changing Assistant

            Objective:

            Highway Assistant – Lane Changing Assistant Introduction to the Feature: The Highway Assistant supports the driver and takes over the longitudinal and lateral guidance of the vehicle in monotonous driving situations on highways. The partially automated function can automatically start, accelerate, brake as well as…

            calendar

            25 Jul 2022 05:41 PM IST

            Read more

            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- /* * Project_1.c * * Created on: 26-Aug-2022 * Author: Viraj */ #include <stdio.h>#include <stdlib.h> // A structure of linked list nodestruct node { int value; struct node *next; } *SetOne, *SetTwo, *SetUnion, *SetIntersection; void initialize() { SetOne = SetTwo = NULL;} void insert(struct node **head,…

            calendar

            27 Aug 2022 05:20 AM IST

              Read more

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

              Objective:

                /* * main.c * * Created on: 27-Aug-2022 * Author: Viraj */ #include<stdio.h>#include "states.h" /*Including header file*/ static void(*StateTable[])(void)={GearDown,CheckingBeforeTakeoff,RaisingGear,GearUp,CheckingBeforeLanding,LoweringGear}; int main(){ Initiate_State_Machine(); //Calling the state initialization…

              calendar

              07 Sep 2022 10:40 AM IST

                Read more

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

                Objective:

                 Main.c /* * main.c * * Created on: 27-Aug-2022 * Author: Viraj */ #include#include "states.h" /*Including header file*/ static void(*StateTable[])(void)={GearDown,CheckingBeforeTakeoff,RaisingGear,GearUp,CheckingBeforeLanding,LoweringGear}; int main(){ Initiate_State_Machine(); //Calling the state initialization…

                calendar

                07 Sep 2022 11:33 AM IST

                  Read more

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

                  Objective:

                    Q1)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 & the…

                  calendar

                  25 Sep 2022 01:14 PM IST

                  Read more

                  Project 2 - Development of TFT Cluster Speedometer Software Component

                  Objective:

                  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

                  28 Sep 2022 07:05 PM IST

                    Read more

                    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- /* * Project_1.c * * Created on: 26-Aug-2022 * Author: Viraj */ #include #include // A structure of linked list nodestruct node { int value; struct node *next; } *SetOne, *SetTwo, *SetUnion, *SetIntersection; void initialize() { SetOne = SetTwo = NULL;} void insert(struct node **head, int num) { // Create a new Linked…

                    calendar

                    01 Oct 2022 12:30 PM IST

                      Read more

                      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- /* * Project_1.c * * Created on: 26-Aug-2022 * Author: Viraj */ #include #include // A structure of linked list nodestruct node { int value; struct node *next; } *SetOne, *SetTwo, *SetUnion, *SetIntersection; void initialize() { SetOne = SetTwo = NULL;} void insert(struct node **head, int num) { // Create a new Linked…

                      calendar

                      06 Oct 2022 05:22 AM IST

                        Read more
                        Showing 1 of 20 projects

                        9 Course Certificates

                        certificate

                        Introduction to Physical Modeling using Simscape

                        CertificateIcon
                        Certificate UID: 9byv3n7fpwu4altk
                        View Certificate
                        certificate

                        Introduction to Model-Based Development using MATLAB and Simulink

                        CertificateIcon
                        Certificate UID: jkunie8a0wxvc276
                        View Certificate
                        certificate

                        Introduction to Hybrid Electric Vehicle using MATLAB and Simulink

                        CertificateIcon
                        Certificate UID: rm73a48tbiklnyjf
                        View Certificate
                        certificate

                        Introduction to Automotive Embedded Systems and AUTOSAR

                        CertificateIcon
                        Certificate UID: izwcbsgqe8p76fka
                        View Certificate
                        certificate

                        Embedded Programming Essentials

                        CertificateIcon
                        Certificate UID: r8cp4vunq2zlwdgb
                        View Certificate
                        certificate

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

                        CertificateIcon
                        Certificate UID: unbot1lj2qpwf87z
                        View Certificate
                        certificate

                        Verbal Ability

                        CertificateIcon
                        Certificate UID: btdpu7ra0e9h2i6n
                        View Certificate
                        certificate

                        Aptitude

                        CertificateIcon
                        Certificate UID: s20lxu5hdk6gi8va
                        View Certificate
                        certificate

                        HR Prep

                        CertificateIcon
                        Certificate UID: 8ef25j7bamyd1inl
                        View Certificate
                        Showing 1 of 9 certificates

                        Academic Qualification

                        B.E

                        Finolex Academy of Management and Technology

                        10 Jul 2015 - 01 Jun 2019

                        12th

                        Abhyankar Kulkarni Junior College

                        16 Jun 2014 - 14 Mar 2015

                        10th

                        phatak High School

                        15 Jun 2012 - 04 May 2013

                        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
                        4.8

                        5 Hours of Content

                        coursecard
                        Recently launched

                        20 Hours of Content

                        coursecard
                        Recently launched

                        18 Hours of Content

                        coursecard
                        Recently launched

                        21 Hours of Content

                        coursecard
                        Recently launched

                        10 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