0% found this document useful (0 votes)
8 views

Report

Uploaded by

tanishq2003jpr
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
8 views

Report

Uploaded by

tanishq2003jpr
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 49

ABSTRACT

1
Chapter-1
INTRODUCTION
MATLAB (matrix laboratory) is a fourth-generation high-level programming language
and interactive environment for numerical computation, visualization and programming.
MATLAB is developed by MathWorks. It allows matrix manipulations; plotting of
functions and data; implementation of algorithms; creation of user interfaces; interfacing
with programs written in other languages, including C, C++, Java, and FORTRAN;
analyze data; develop algorithms; and create models and applications. It has numerous
built-in commands and math functions that help you in mathematical calculations,
generating plots, and performing numerical methods.

1.1 MATLAB's Power of Computational Mathematics

MATLAB is used in every facet of computational mathematics. Following are some


commonly used mathematical calculations where it is used most commonly −

 Dealing with Matrices and Arrays


 2-D and 3-D Plotting and graphics
 Linear Algebra
 Algebraic Equations
 Non-linear Functions
 Statistics
 Data Analysis
 Calculus and Differential Equations
 Numerical Calculations
 Integration
 Transforms
 Curve Fitting
 Various other special function

1.2 Uses of MATLAB

MATLAB is widely used as a computational tool in science and engineering


encompassing the fields of physics, chemistry, math and all engineering streams. It is
used in a range of applications including –

Signal Processing and Communications

 Image and Video Processing

2
 Control Systems

 Test and Measurement

 Computational Finance

 Computational Biology

 MATLAB is an interactive program for numerical computation and data visualization;


it is used extensively by control engineers for analysis and design. There are many
different toolboxes available which extend the basic functions of MATLAB into
different application areas; in these tutorials, we will make extensive use of the Control
Systems Toolbox. MATLAB is supported on Unix, Macintosh, and Windows
environments; a student version of MATLAB is available for personal computers. For
more information on MATLAB, please visit the MathWorks home.

The idea behind these tutorials is that you can view them in one window while running
MATLAB in another window. You should be able to re-do all of the plots and
calculations in the tutorials by cutting and pasting text from the tutorials into the
MATLAB Command Window or an m-file.

1.3 A RENEWABLE ENERGY-SOLAR ENERGY

Solar energy is radiant light and heat from the Sun that is harnessed using a range of
technologies such as solar power to generate electricity, solar thermal
energy (including solar water heating), and solar architecture.

It is an essential source of renewable energy, and its technologies are broadly


characterized as either passive solar or active solar depending on how they capture and
distribute solar energy or convert it into solar power. Active solar techniques include the
use of photovoltaic systems, concentrated solar power, and solar water heating to harness
the energy. Passive solar techniques include orienting a building to the Sun, selecting
materials with favorable thermal mass or light-dispersing properties, and designing
spaces that naturally circulate air.

The large magnitude of solar energy available makes it a highly appealing source of
electricity. In 2020 solar energy has been the cheapest source of Electricity. In Saudi
Arabia a power purchase agreement (ppa) have been signed in April 2021 for a new solar
power plant in Al-Faisaliah. The project has recorded the world’s lowest cost for Solar
PV electricity production of USD 1.04 cents/ kWh.

In 2011, the International Energy Agency said that "the development of affordable,
inexhaustible and clean solar energy technologies will have huge longer-term benefits. It

3
will increase countries' energy security through reliance on an indigenous, inexhaustible,
and mostly import-independent resource, enhance sustainability, reduce pollution, lower
the costs of mitigating global warming These advantages are global."

1.4 ELECTRIC VEHICLE

Electric Vehicle is one of the most talkative inventions in recent globe. It gives a good
challenge to fuel vehicles. Now the World want to complete shift towards the electric
vehicle. Electric vehicle runs by the electric power. It is the recent technology on vehicle
industry. Fully electric vehicles nowadays lead the world transportation system.
Dependency on electric vehicle nowadays increases on commercial and personal use.

An electric vehicle (EV) is a vehicle that uses one or more electric motors for propulsion.
It can be powered by a collector system, with electricity from extravehicular sources, or
it can be powered autonomously by a battery (sometimes charged by solar panels, or by
converting fuel to electricity using fuel cells or a generator). EVs include, but are not
limited to, road and rail vehicles, surface and underwater vessels, electric
aircraft and electric spacecraft.

EVs first came into existence in the late 19th century, when electricity was among the
preferred methods for motor vehicle propulsion, providing a level of comfort and ease of
operation that could not be achieved by the gasoline cars of the time. Internal combustion
engines were the dominant propulsion method for cars and trucks for about 100 years,
but electric power remained commonplace in other vehicle types, such as trains and
smaller vehicles of all types.

In the 21st century, EVs have seen a resurgence due to technological developments, and
an increased focus on renewable energy and the potential reduction of transportation's
impact on climate change, air pollution, and other environmental issues. Project
Drawdown describes electric vehicles as one of the 100 best contemporary solutions
for addressing climate change.

Government incentives to increase adoption were first introduced in the late 2000s,
including in the United States and the European Union, leading to a growing market for
the vehicles in the 2010s. Increasing public interest and awareness and structural
incentives, such as those being built into the green recovery from the COVID-19
pandemic, is expected to greatly increase the electric vehicle market. During the COVID-
19 pandemic, lockdowns have reduced the amount of greenhouse gases from gasoline or
diesel vehicles. The International Energy Agency said in 2021 that governments should
do more to meet climate goals, including policies for heavy electric vehicles. Electric
vehicle sales may increase from 2% of global share in 2016 to 30% by 2030.

4
Chapter-2

VARIABLES, VECTORS AND FUNCTIONS IN MATLAB


2.1 VARIABLES

In MATLAB environment, every variable is an array or matrix.

You can assign variables in a simple way. For example,

x = 3 % defining x and initializing it with a value

MATLAB will execute the above statement and return the following result −

x=3

It creates a 1-by-1 matrix named x and stores the value 3 in its element. Let us

Check another

Example:

x = sqrt(16) % defining x and initializing it with an expression

MATLAB will execute the above statement and return the following result −

x=4

2.2 VECTOR

Let's start off by creating something simple, like a vector. Enter each element of the
vector (separated by a space) between brackets, and set it equal to a variable. For
example, to create the vector a, enter the following into the MATLAB command window

(you can Copy and Paste from your browser into MATLAB to make it easy) and

MATLAB should return the following:

a = [1 2 3 4 5 6 9 8 7]

a=

123456987

Let's say you want to create a vector with elements between 0 and 20 evenly spaced in
increments of two (this method is frequently used to create a time vector):

t = 0:2:20
5
t=

0 2 4 6 8 10 12 14 16 18 20

· Manipulating vectors is almost as easy as creating them. First, suppose you would like
to add 2 to each of the elements in the vector a. The equation for that looks like:

b=a+2

b=

3 4 5 6 7 8 11 10 9

Now suppose, you would like to add two vectors together. If the two vectors are the
same length, it is easy. Simply add the two as shown below:

c=a+b

c=

4 6 8 10 12 14 20 18 16

Subtraction of vectors of the same length works exactly the same way

There are some commands which are very useful for vector calculations and time saving
advantages also-

2.1 Table of commands and their uses

Commands 6. Uses
Length To find the no of values in vector.
Sum To find out the addition of values in vector.
Mean To find out the average of values of a particular vector.
Median To find out the median value of a particular vector.
Min To find out the minimum value of a particular vector
Max To find out the maximum value of a particular vector
Rand Used to create random new vector.
Randperm This gives non repeating values in a vector.
Ones This gives a vector contains same element.
Zeros This gives a vector contains all ‘0’ element.

6
2.3 FUNCTIONS

To make life easier, MATLAB includes many standard functions. Each function is a
block of code that accomplishes a specific task.

2.2 Table of functions and their uses

Functions Uses
Fact To find out the factorial value of any non-zero number.
Sqrt To find out the square root value of any non-zero number.
Nthroot To find out the nth root of any non-zero number.
sin,cos,tan To find out the sin, cos, tan values.
asin,acos,atan To find out the inverse values of sin, cos, tan.
sinh,cosh,tanh To find out the hyperbolic sin, cos, tan values.
Exp To find out the exponential value of a number.

Example:-

sin(pi/4)

ans=

0.7071

Note: - Commonly used constants such as pi, and i or j for the square root of -1, are also
incorporated into MATLAB.

7
Chapter-3

MATRIX AND GRAPH PLOTTING WITH MATLAB


3.1 MATRIX WITH MATLAB

3.1.1 CREATING MATRIX

Entering matrices into MATLAB is the same as entering a vector, except each row of
elements is separated by a semicolon (;) or a return:

A = [1 2 3 4; 5 6 7 8; 5 10 15 20]

A=[1234

5678

5 10 15 20 ]

3.1.2 MATRIX OPERATIONS

MATLAB provides several useful matrix operations:

3.1 Table of operations

+ Matrix addition
- Matrix subtraction
* Dot product
‘ Take a transpose of a matrix
Inv Take the inverse of a matrix
Eig Computes the eigen values of a square matrix
Det Computes the determinents of a matrix

Example:-

B = [1 2 3 4; 5 6 7 8; 9 10 11 12]

8
B=[1234

5678

9 10 11 12 ]

B=1234

5678

9 10 11 12

C = B‘

C=1592

6 10 3 7

11 4 8 12

D=B*C

D=C*B

D = 30 70 110

70 174 278

110 278 446

D = 107 122 137 152

122 140 158 176

137 158 179 200

152 176 200 224

Another option for matrix manipulation is that you can multiply the corresponding
elements of two matrices using the .* operator (the matrices must be the same size to do
this).

E = [1 2; 3 4]

F = [2 3; 4 5]

G = E .* F

9
E=12

34

F=23

45

G=26

12 20

If you have a square matrix, like E, you can also multiply it by itself as many times as
you like by raising it to a given power.

E^3

ans =

37 54

81 11

You can also find the inverse of a matrix:

X = inv(E)

X=

-2.0000 1.0000

1.5000 -0.5000

or its eigenvalues:

eig(E)

ans =

-0.3723 5.3723

10
3.2 GRAPH PLOTTING WITH MATLAB

3.2.1 PLOTTING COMMANDS

MATLAB provides numerous commands for plotting graphs. The following table shows
some of the commonly used commands for plotting –

3.2 Table of commands

Command Purpose
Axis Sets axis limits
Plot Generates xy plot.
Print Prints plot or saves plot to a file.
Title Puts text at top of plot.
Xlabel Puts text at top of plot.
Ylabel Adds text label to y-axis.
Figure Opens a new figure window.
Subplot Creates plots in subwindows
Grid Displays gridlines.

3.2.2 SINE GRAPH

It is also easy to create plots in MATLAB. Suppose you wanted to plot a sine wave as a
function of time. First, make a time vector (the semicolon after each statement tells
MATLAB we don't want to see all the values) and then compute the sin value at each
time.

t = 0:0.25:7;

y = sin(t);

plot(t,y)

title('Sine Wave as a Function of Time')

xlabel('Time (secs)')

ylabel('Amplitude')

11
1

0.8

0.6

0.4

0.2

-0.2

-0.4

-0.6

-0.8

-1
0 50 100 150 200 250 300 350

3.1 Sine graph

3.2.3 COS GRAPH

t = 0:0.25:7;

y = cos(t);

plot(t,y)

title(‘Cos wave as a Function of Time’)

xlabel(‘Time(secs)’)

ylabel(‘Amplitude’)

12
1

0.8

0.6

0.4

0.2

-0.2

-0.4

-0.6

-0.8

-1
0 50 100 150 200 250 300 350

3.2 Cos graph

3.2.4 BOTH SIN AND COS AT A LIMIT

t=0:pi/90:2*pi;

subplot(2,2,1)

plot(t,sin(x))

title(‘sine graph’)

xlabel(‘Time’)

ylabel(‘Amplitude’)

subplot(2,1,1)

plot(t,cos(t))
13
title(‘cos graph’)

xlabel(‘Time’)

ylabel(‘Amplitude’)

sine wave cose wave


1 1

Amplitu0d.5e Amplitu0d.5e

0 0

-0.5 -0.5

-1 -1
0 50 100 150 200 250 300 0 50 100 150 200 250 300 350
350
Time
Time

3.3 Sine and cos graph at a limit

14
Chapter-4

CONTROL SYSTEM WITH MATLAB


4.1 WHAT IS CONTROL SYSTEM

A system is a collection of things that are put together with the intention to perform a
specific task. When we excite a system with an input, we get a certain response. A
resistor, a capacitor, an air conditioner, an automobile are some examples of systems.
Sometimes a system is referred to as a “plant.”

A control system is a mechanism that directs the input it receives through the systems
and regulates their output.

Desired response Controller Control output Plant out


Output

Control system To be controlled

Fig. 4.1 Block diagram of control system


The above figure shows the block diagram of a control system. A control system alters
the response of a plant or a system as desired. For example, assume we have a system
that will be controlled, let’s say a motor whose position is to be controlled. We employ a
servomechanism here, which is the control system (or the controller), which gives a
certain control input to the motor on how much to rotate. The end goal is for the entire
system (the system and the controller) to perform the desired objective

4.2 SIGNIFICANCE OF MATLAB IN CONTROL SYSTEM

Control system engineers use MATLAB® and Simulink® at all stages of development –
from plant modeling to designing and tuning control algorithms and supervisory logic,
all the way to deployment with automatic code generation and system verification,
validation, and test. MATLAB and Simulink offer:

 A multi-domain block diagram environment for modeling plant dynamics,


designing control algorithms, and running closed-loop simulations
 Plant modeling using system identification or physical modeling tools
 Prebuilt functions and interactive tools for analyzing overshoot, rise time, phase
margin, gain margin, and other performance and stability characteristics in time
and frequency domains
15
 Root locus, Bode diagrams, LQR, LQG, robust control, model predictive control,
and other design and analysis techniques
 Automatic tuning of PID, gain-scheduled, and arbitrary SISO and MIMO control
systems

 Modeling, design, and simulation of supervisory logic for performing scheduling,


mode switching, and fault detection, isolation, and recovery (FDIR)

4.3 FUNCTIONS USED

4.1 TABLE OF FUNCTIONS

tf To find out the transfer function.


pzmap To find out the pole.
Printsys To find out the transfer script.
cloop Used for unity feedback.
feedback Used for feedback.
parallel Used for parallel action.
Series Used for series action.

4.4 SOLVED PROBLEMS

Q.1 find out the pole zero plot of following transfer function

Transfer function is equal to S^4+S^3+2S+1 divided by S(S+1).

Solution:

>> n4=[1 1 0 2 1]

n4 =

1 1 0 2 1

>> d4=[1 5 0]

d4 =

1 5 0

>> sys4= tf(n4,d4)

Transfer function:

16
s^4 + s^3 + 2 s + 1

s^2 + 5 s

>> pzmap(sys4)

Pole-Zero Map
1.5

0.5
Imaginary

0
Axis

-0.5

-1

-1.5
-5 -4.5 -4 -3.5 -3 -2.5 -2 -1.5 -1 -0.5 0
Real Axis

Fig.4.1 Pole zero plot

Q.2 find out the pole zero plot of following transfer function

Transfer function is equal to s^2(S+10) divided by S^6+3S^3+5S^1

Solution:

>> n5=[1 10 0 0]

n5 =
17
1 10 0 0

>> d5=[1 0 3 0 5 0]

d5 =

1 0 3 0 5 0

>> sys5= tf(n5,d5)

Transfer function:

s^3 + 10 s^2

s^5 + 3 s^3 + 5 s

>> pzmap(sys5)

18
Pole-Zero Map
1.5

0.5
Imaginary

0
Axis

-0.5

-1

-1.5
-10 -8 -6 -4 -2 0 2
Real Axis

Fig.4.2 Pole zero plot

Q.3 A control system is shown in the figure determine the transfer function where
G(s) is equal to 4 divided by S(S+1)& feedback is –ve unity .

Solution: >> n7=[4]

n7 =

>> d7=[1 1 0]

d7 =

1 1 0

19
>> printsys(n7,d7)

num/den =

s^2 + s

>> [n8,d8]=cloop(n7,d7,-1)

n8 =

0 0 4

d8 =

1 1 4

>> printsys(n8,d8)

num/den =

20
s^2 + s + 4

Q.4 A control system is given the fig Find out the transfer function given

4
s(s+1)
-1

Solution:

>> n1=[4]

n1 =

>> d1=[1 1 0]

d1 =

1 1 0

21
>> printsys(n1,d1)

num/den =

s^2 + s

>> n2=[1 0]

n2 =

1 0

>> d2=[0 1]

d2 =

0 1

>> printsys(n2,d2)

num/den =

1
22
>> [n3,d3]=feedback(n1,d1,n2,d2,-1)

n3 =

0 0 0 4

d3 =

0 1 5 0

>> printsys(n3,d3)

num/den =

s^2 + 5 s

23
Q.5 A control system given in the figure, find out the transfer function

4/s(s+1)

- -

+
S+1.2
+

Solution:
S+0.8
>> n1=[4]

n1 =

>> d1=[1 4 0]

d1 =

1 4 0

>> printsys(n1,d1)

num/den =

24
4

s^2 + 4 s

>> [n2,d2]=cloop(n1,d1,-1)

n2 =

0 0 4

d2 =

1 4 4

>> printsys(n2,d2)

num/den =

s^2 + 4 s + 4

>>>> n3=[1 1.2]

n3 =

25
1.0000 1.2000

>> d3=[0 1]

d3 =

0 1

>> n4=[1 0.8]

n4 =

1.0000 0.8000

>> d4=[0 1]

d4 =

0 1

>> [n5,d5]=parallel(n3,d3,n4,d4)

n5 =

0 2 2
26
d5 =

0 0 1

>> printsys(n5,d5)

num/den =

2s+2 2s+2
1

>> [n6,d6]=feedback(n2,d2,n5,d5,-1)

n6 =

0 0 0 0 4

d6 =

0 0 1 12 12
27
>> printsys(n6,d6)

num/den =

s^2 + 12 s + 12

28
Chapter-5

MATLAB SIMULINK
5.1 WHAT IS SIMULINK

Matlab is a MATLAB-based graphical programming environment for modeling,


simulating and analyzing multidomain dynamical systems. Its primary interface is
a graphical block diagramming tool and a customizable set of block libraries. It offers
tight integration with the rest of the MATLAB environment and can either drive
MATLAB or be scripted from it. simulation and model-based design.

5.2 APPLICATIONS OF MATLAB SIMULINK

 Technical or Math Computation


 Control System Design
 DSP System Design
 TEST and Measurement
 Education and Industrial Department
 Communication and Aerospace System
 Biotechnology, Pharmaceutical, and Medical
 Financial Modeling and Analysis

29
5.3 SOLVED PROBLEMS

Q1.Find out the Current and Voltage in figure 5.1

Fig.5.1

Ans:

Fig.5.2

30
Q2.Find out the current in fig.3

Fig.5.3

Ans:

Fig.5.4
31
Q3. Find out the current and voltage in graphical mode in fig5.5

Fig.5.5

Ans:

Fig.5.6

32
Q.4 Find out the current and voltage in graphical mode in fig.5.7

Fig.5.7

Ans:

Fig.5.8

33
Q5.Find out the current and voltage in graphical mode in fig5.9

Fig

Fig.5.9

Ans:

Fig.5.10

34
Q6 Find out the current and voltage in graphical mode in fig.5.11

Fig.5.11

Ans:

Fig.5.1

35
Q7. Find out the values of current and voltage in fig.5.13

Fig.5.13

Ans:

Fig.5.14

36
Chapter-6

SOLAR POWER
6.1 WHAT IS SOLAR POWER

Solar energy is radiant light and heat from the Sun that is harnessed using a range of
technologies such as solar power to generate electricity, solar thermal
energy (including solar water heating), and solar architecture.

6.2 GENERATION OF SOLAR POWER

6.2.1 PHOTOVOLTAIC EFFECT

The photovoltaic effect is the generation of voltage and electric current in a material with
the presence of light.

This effect occurs in solar cells. The solar cells have two different types of
semiconductors – p-type and n-type. When light or sun ray strikes on solar cells, the
holes are driven to the downward direction in where electrons are present. And electroms
are gone to the upward direction i.e. to the holes. So, a motion of holes and electrons are
created. This helps to from a layer of positive holes and negative electrons. This creates a
voltage and current. This phenomenon is called photovoltaic effect.

Fig. 6.1 Photovoltaic effect

37
6.3 TYPES OF SOLAR PANELS

There are three major types of solar panels: monocrystalline, polycrystalline. Each type
has its own unique advantages and disadvantages, and the solar panel type best suited for
your installation will depend on factors specific to your own property and desired system
characteristics.

6.1 Major types of solar panels

Solar panel type Advantages Disadvantages


Monocrystalline High efficiency and Higher costs
performance
Polycrystalline Lower costs Lower efficiency

6.3.1 MONOCRYSTALLINE SOLAR PANELS

Of all types of solar panels, monocrystalline panels are likely to be the most expensive
option. This is largely due to the manufacturing process – because the solar cells are
made from a single silicon crystal, manufacturers have to absorb the costs of creating
these crystals. This process, known as the Czochralski process, is energy-intensive and
results in wasted silicon (that can later be used to manufacture polycrystalline solar
cells).

Fig. 6.2 Mono panel

38
6.3.2 POLYCRYSTALLINE SOLAR PANELS

Polycrystalline solar panels are typically cheaper than monocrystalline solar panels. This
is because the cells are produced from silicon fragments rather than a single, pure silicon
crystal. This allows for a much simpler cell manufacturing process, thus costing less for
manufacturers and eventually end-users.

Fig.6.3 Poly panel

6.4 SOLAR PANEL INSTALLATIONS AND DISTRIBUTION PROCESS

6.4.1 REQURIED ITEMS FOR INSTALLATION OF SOLAR ENERGY

 Solar panels
 Hybrid inverters
 Battery
 Grid line(if any)

39
6.4.2 DISTRIBUTION

For home purposes, we can install it on an area where maximum time of sun ray is
available like roof of a house. And generated energy will be distributed in home directly,
or store it in a battery and use it whenever required.

Fig.6.4 flow diagram of solar energy

40
6.5 DISADVANTAGES OF SOLAR PANEL

6.5.1 ENVIRONMENTAL FACTORS EFFECTING EFFICIANCY OF SOLAR


PANEL

DUST:-Dust is one of the important factor which effect on the solar power efficiency.

ANGLE:-We should keep in mind that the sun ray should directly strike on panel, so that
maximum efficiency can be obtained. So angle of panels should be adjustable.

SHADOW:-Some external objects shadow decrease and effect on the solar power
efficiency.

TEMPERATURE:-Temperature is the most important part of solar power. At the certain


point of temperature increase the solar power efficiency, but excess temp.(Like 40 0c to
above) not only decrease the efficiency but also burn photovoltaic cell.

6.6 BIG SOLAR POWER INSTALLATIONS IN INDIA

6.2 Top four solar power plant in India

Power plant name Total capacity Location


Bhadla solar park 2250W Jodhpur,Rajasthan
Shakti Sthala Solar park 2050W Tumakuru,Karnatak
a
Ultra mega solar park 1000 Kurnool,Andhra
Pradesh
Rewa solar power 750 Rewa,Madhya
project Pradesh

41
Chapter-7

ELECTRIC VEHICLE
7.1 WHAT IS ELECTRIC VEHICLE

Electric Vehicle is one of the most talkative inventions in recent globe. It gives a good
challenge to fuel vehicles. Now the World want to complete shift towards the electric
vehicle. Electric vehicle runs by the electric power. It is the recent technology on vehicle
industry. Fully electric vehicles nowadays lead the world transportation system.
Dependency on electric vehicle nowadays increases on commercial and personal use.

7.2 COMPONENTS OF ELECTRICAL VEHICLE

 Traction Battery Pack: The function of the battery in an electric car is as an


electrical energy storage system in the form of direct-current electricity (DC). If it
gets a signal from the controller, the battery will flow DC electrical energy to the
inverter to then be used to drive the motor. The type of battery used is a
rechargeable battery that is arranged in such a way as to form what is called
a traction battery pack.
 Power Inverter: The function of the battery in an electric car is as an
electrical energy storage system in the form of direct-current electricity (DC). If it
gets a signal from the controller, the battery will flow DC electrical energy to the
inverter to then be used to drive the motor. The type of battery used is a
rechargeable battery that is arranged in such a way as to form what is called
a traction battery pack.

Fig.7.1 Power inverter

42
 Controller: The main function of the controller is as a regulator of electrical
energy from batteries and inverters that will be distributed to electric motors.
While the controller itself gets the main input from the car pedal (which is set by
the driver). This pedal

Fig.7.2 Controller

setting will determine the frequency variation or voltage variation that will enter
the motor, and at the same time determine the car’s speed.
 Electric Traction Motor: The controller provides electrical power from the
traction battery, the electric traction motors will work turning the transmission
and wheels. Some hybrid electric cars use a type of generator-motor that
performs the functions of propulsion and regeneration. In general, the type of
electric motor used is the BLDC (brushless DC) motor.

Fig.7.3 Traction motor

43
 Charger: Charger is a battery charging device. Chargers get electricity from
outside sources, such as the utility grid or solar power plants. AC electricity is
converted into DC electricity and then stored in the battery.

Fig.7.4 Chargers-Level1, Level2 and Level3

 Transmission: The transmission transfers mechanical power from the electric


traction motor to drive the wheels.

 DC/DC Converter: This one of electric car parts that to converts higher-voltage DC
power from the traction battery pack to the lower-voltage DC power needed to run
vehicle accessories and recharge the auxiliary battery.

Fig.7.5 DC/DC converter

44
 Battery: In an electric drive vehicle, the auxiliary battery provides electricity to
power vehicle accessories.

Fig.7.6 Lithium-ion battery


 Thermal System – Cooling: This system maintains a proper operating temperature
range of the engine, electric motor, power electronics, and other components.

 Charge Port: The charge port allows the vehicle to connect to an external power
supply in order to charge the traction battery pack.

Fig.7.7 Schematic diagram of EV

45
7.3 ELECTRIC VEHICLE POLICIES IN INDIA

To assist the acceptance of electric vehicles (EVs) in the country, the central government has
announced a number of promotional measures in the previous ten years, including tax
incentives for electric vehicle owners, public EV charging infrastructure development, and so
on.

Fig.7.8 Timeline for various initiatives taken by policymakers and regulators

7.3.1 FAME-| AND ||

Faster Adoption and Manufacturing of (Hybrid &) Electric Vehicles in India (FAME-
India) Scheme is launched under National Mission on Electric Mobility in 2011/
National Electric Mobility Mission Plan 2020, unveiled in 2013. The scheme aims to
encourage progressive induction of reliable, affordable and efficient electric and hybrid
vehicles (x EV). The First Phase of the scheme was initially approved for a period of 2
years, commencing from 1st April, 2015. The Scheme has been extended from time to
time, with the last extension allowed for a period up to 31st March 2019. It is under the
frame work of Demand Incentive Disbursement Mechanism. Incentive amount has been
determined for each category of vehicle like Mild Hybrid, Strong Hybrid, Plug-in Hybrid
and Pure Electric technologies and battery specification. It is implemented and monitored
by National Automotive Board under D/o Heavy Industry. It is one of the DBT schemes
categorized under in-kind mode.

Government has approved Phase-II of FAME Scheme with an outlay of Rs.


10,000 Crore for a period of 3 years commencing from 1st April 2019. Out of
total budgetary
46
support, about 86 percent of fund has been allocated for Demand Incentive so as to
create demand for Electric Vehicles (x EVs) in the country. This phase aims to
generate demand by way of supporting 7000 Electric Buses (e-bus), 5 lakh Electric
Three Wheelers (e- 3W), 55000 Electric Four-Wheeler Passenger Cars (including Strong
Hybrid) (e-4W) and 10
lakh Electric Two Wheelers (e-2W). However, depending upon off-take of
different category of x EVs, these numbers may vary as the provision has been
made for inter as well as intra segment wise fungibility. In addition, creation of
Charging Infrastructure will also be supported under the Scheme.

7.3.2 NATIONAL MISSION ON TRANSFORMATIVE MOBILITY AND STORAGE:

The aim of the mission is to drive strategies for transformative mobility and Phased
Manufacturing Programmes for electric vehicles, electric vehicle Components and Batteries.
Following are the key roles, roadmap and anticipated impact envisaged under the mission:

Role:

 Drive strategies for transformative mobility and Phased Manufacturing Programmes


for electric vehicles, electric vehicle Components and Batteries
 Creating a Phased Manufacturing Program (PMP) to localize production across the
entire electric vehicle value chain
 Details of localization will be finalized by the Mission with a clear Make in India
strategy for the electric vehicle components as well as battery
 The Mission will coordinate with key stakeholders in Ministries/ Departments/states to
integrate various initiatives to transform mobility in India

Roadmap:

 Phased battery manufacturing roadmap with initial focus on large-scale module and
pack assembly plants by 2019-20 and Gigascale integrated cell manufacturing by 2021-
22
 Ensuring holistic and comprehensive growth of the battery manufacturing industry in
India through PMP
 Preparing roadmap for enabling India to leverage its size and scale to produce
innovative, competitive multi-modal mobility solutions that can be deployed globally
in diverse contexts
 Roadmap for transformative mobility in “New India” by introducing a sustainable
mobility ecosystem and fostering Make-in-India

Impact:

 Drive mobility solutions to benefits to the industry, economy and country


 Improving air quality in cities along with reducing India’s oil import dependence and
47
enhancing the uptake of renewable energy and storage solutions

48
 The Mission will lay down the strategy and roadmap which will enable India to
leverage upon its size and scale to develop a competitive domestic manufacturing
ecosystem for electric mobility
 Benefit all citizens as the aim is to promote ‘Ease of Living’ and enhance the quality of
life of our citizens and also provide employment opportunities through ‘Makein-India’
across a range of skill sets

49

You might also like