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

Project-1: Modelling an electric Car with Li-ion battery

Aim:         To Create a MATLAB model of electric car which uses lithium ion battery and suitable motor. Choose suitable blocks from Simscape or Powertrain block set. Implement the vehicle speed control using PI controller and generate brake and accelerator commands. Avoid using readymade driver…

Project Details

Loading...

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.

Please  login to add a comment

Other comments...

No comments yet!
Be the first to add a comment

Read more Projects by Mohamed imthiyas (15)

Project 1

Objective:

QUESTION 1:   Design a battery pack for a car roughly 150 Kw with 120 V. Use 3500 mAh 3.6V nominal NMC chemistry cell.  1.Design the battery pack configuration.    2.Draw the BMS topology for this battery pack.   Aim: To design the battery pack with the capacity 150Kw 120V by using 3500mAh 3.6V.…

calendar

24 Feb 2023 10:49 AM IST

    Read more

    Project 2 - Modeling of 3 phase Induction Motor Drive

    Objective:

    EV REFRESHER BATCH 5: Design Parameters: Initial Speed = 0 RPM Flux Target = 2.5 webers DC Voltage = 500 V; Fundamental Frequency = 60 Hz Speed Step Time = 0.01 secs Determine fundamental speed based upon fundamental frequency Determine the switching sequence for direct torque control Moment of Inertia = 0.1 Kgm^2 Load…

    calendar

    30 Dec 2022 12:27 PM IST

      Read more

      Project 1 - Loss calculation for a DC/DC converter-MATLAB

      Objective:

      EV REFRESHER BATCH 5: AIM: Extending the learned lessons in previous module, you will be diving into another power electronics concept on your own. Design of boost converter, and calculating the loss of different components including power switching device and deriving efficiency of boost converter. This is applicable…

      calendar

      29 Dec 2022 02:06 PM IST

        Read more

        Project 2

        Objective:

        QUESTION 1:       AIM: Using MATLAB/simulink and  the drive cycle from the attached excel sheet, find- The max heat generation of the battery  The SOC of the battery at 2 *104second of the battery operation Time Time Step Battery Current 00:00.4 0.1 -0.9632 00:00.5 0.2 -0.952 00:00.6 0.3 -0.9072…

        calendar

        10 Oct 2022 02:44 PM IST

        • HTML
        • MATLAB
        Read more

        Project-1: Modelling an electric Car with Li-ion battery

        Objective:

        Aim:         To Create a MATLAB model of electric car which uses lithium ion battery and suitable motor. Choose suitable blocks from Simscape or Powertrain block set. Implement the vehicle speed control using PI controller and generate brake and accelerator commands. Avoid using readymade driver…

        calendar

        03 Oct 2022 07:25 AM IST

        Read more

        Final Project: Electric Rickshaw modelling

        Objective:

        AIM: Design of an Electric Rickshaw using MATLAB Simulink ABSTRACT:                        In this project, we work to create the MATLAB model of the ELECTRIC RICKHAEW by doing a PM brushed type DC motor and a suitable Lithium-Ion battery for the motor. Before…

        calendar

        02 Oct 2022 11:25 AM IST

        Read more

        Final Project: Design of an Electric Vehicle

        Objective:

        Electric Vehicle: An electric vehicle runs on pure electricity without any consumption of conventional fuels. Any automobile that is propelled by an electric motor, using energy stored in the battery is called a pure electric vehicle. Battery electric vehicles store electricity on board with high-capacity battery packs.…

        calendar

        11 Sep 2022 07:50 AM IST

          Read more

          Week-4 Challenge WOT Condition Part-2

          Objective:

          QUESTION 1: 1.What is the difference between mapped and dynamic model of engine, motor and generator? How can you change model type?  Ans:powertrain blockset provides two types of combustion engine models:mapped and dynamic. Mapped engine: 1.Mapped engines represent macro engine behaviour as a set of lookup tables(brake…

          calendar

          09 Sep 2022 05:24 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.  ANS:       An aircraft is a vehicle or machine that is able to fly by gaining support from the air. It counters the force of gravity by using either static lift or by using the dynamic lift of an airfoil, or in a few cases…

          calendar

          08 Sep 2022 11:46 AM IST

            Read more

            Week-11 Challenge: Braking

            Objective:

            QUESTION 1:     For a defined driving cycle, calculate the energy required for braking SOL: Calculating the energy required for braking of UDDS Drive Cycle- Braking: Braking is a condition to slow down or stops a moving vehicle as required. There are several techniques to apply brakes, which can be mechanical…

            calendar

            01 Sep 2022 04:09 PM IST

            Read more

            Week-7 Challenge: DC Motor Control

            Objective:

            QUESTION 1: 1).      A. Explain a MATLAB demo model named ‘Speed control of a DC motor using BJT H-bridge’          Run MATLAB demo ‘Speed control of a DC motor using BJT H-bridge’. Modify the model such that the armature current doesn’t shoot up when…

            calendar

            28 Aug 2022 03:11 PM IST

            Read more

            Week-6 Challenge: EV Drivetrain

            Objective:

            Aim: To get to know the types of converters used in HEV and EV vehicles. To find the speed using torque-speed relation. To get to know about induction and DC brushless motors.question:1.  Which types of power converter circuits are employed in electric and hybrid electric vehicle?Power Electronic Converters: -In…

            calendar

            25 Aug 2022 01:17 PM IST

            Read more

            Week-3 Challenge: ADVISOR Tool

            Objective:

            Introduction: ADVISOR tool, developed in November 1994 by the National Renewable Energy Laboratory (NREL), allows users to simulate and analyze conventional, advanced, light, and heavy vehicles, including hybrid electric and fuel cell vehicles. The tool allows users to assess the effect of changes in vehicle components…

            calendar

            20 Aug 2022 02:43 PM IST

            Read more

            Project - Speed Control of a Direct Current (DC) motor

            Objective:

            Speed Control of a Direct Current (DC) motor:    The block diagram of a simple PID controller is provided in the figure below,     A common actuator in control systems is the DC motor. It directly provides rotary motion and, coupled with wheels or drums and cables, can provide translational motion.…

            calendar

            09 Aug 2022 04:46 PM IST

            Read more

            Project - Data Handling and Interpolation

            Objective:

            PROJECT 1: clc; A=xlsread('Vi.xlsx'); % xlsread Read Microsoft Excel spreadsheet file. V=A(:,1); %taking 1st column values from xlsheet 1. I=A(:,2); %taking 2nd column values from xlsheet 1. plot(V,I) %plot(voltage,current). X=-17.3:0.1:0.9; Y=interp1(V,I,X,'spline'); %interp1 1-D interpolation using spline Cubic spline…

            calendar

            20 Jul 2022 05:45 AM IST

              Read more
              Showing 1 of 15 projects