15 - Modes in Hybrid Fuel Cell Evs
15 - Modes in Hybrid Fuel Cell Evs
15 - Modes in Hybrid Fuel Cell Evs
EXPERIMENT – 15
SIMULATION OF MODES IN HYBRID FUEL CELL EVS
15.1 AIM:
Simulate the various modes of operations in a Hybrid Fuel Cell Electric Vehicle
15.2 SOFTWARE USED:
S. No SOFTWARE USED
1 MATLAB-2015a
15.3 THEORY
Hybrid Fuel Cell Electric Vehicles (FCEVs) combine the advantages of both fuel cell
technology and electric propulsion systems, offering an efficient and environmentally
friendly means of transportation. These vehicles utilize a combination of power sources
and control strategies to optimize performance, efficiency, and range across different
driving conditions. The modes of operation in a Hybrid FCEV are designed to adapt to
varying power demands and energy availability, ensuring seamless operation while
maximizing overall efficiency. The key modes of operation in a Hybrid FCEV include:
1. Fuel Cell Mode (FC Mode):
In this mode, the vehicle primarily relies on the fuel cell stack to generate
electricity through the electrochemical reaction between hydrogen and
oxygen.
Hydrogen stored onboard is supplied to the fuel cell stack, where it
undergoes oxidation at the anode, releasing electrons. These electrons flow
through an external circuit, producing electrical power that drives the
electric motor(s) and propels the vehicle.
Oxygen from the air reacts with hydrogen ions (protons) and electrons at the
cathode, forming water vapor as the main byproduct.
FC mode is typically used during steady-state cruising or low to moderate
power demand conditions, where the fuel cell operates efficiently and can
sustain the vehicle's energy requirements.
2. Battery Electric Mode (BE Mode):
In this mode, the vehicle operates solely on electricity stored in the onboard
battery pack.
The electric motor(s) draw power directly from the battery to propel the
vehicle, bypassing the fuel cell stack.
BE mode is often employed during low-speed driving, urban commuting, or
when the battery state of charge (SOC) is sufficiently high.
It enables zero-emission driving and can be particularly efficient in stop-and-
go traffic conditions or during regenerative braking, where kinetic energy is
converted back into electrical energy and stored in the battery.
3. Hybrid Mode (Combined Mode):
Hybrid mode utilizes both the fuel cell stack and the battery to power the
vehicle.
The control system intelligently manages the power flow between the fuel
cell and the battery based on factors such as driving conditions, power
demand, and energy availability.
During acceleration or high-power demand situations, both the fuel cell stack
and the battery contribute to supplying power to the electric motor(s),
enhancing performance and responsiveness.
#define ELECTRIC_MODE 1
#define FUEL_CELL_MODE 2
#define HYBRID_MODE 3
void electricMode() {
void fuelCellMode() {
void hybridMode() {
int main() {
scanf("%f", &vehicleSpeed);
scanf("%f", &batterySOC);
scanf("%f", &powerDemand);
int mode;
if (vehicleSpeed <= 0) {
} else if (vehicleSpeed > 0 && batterySOC > 20 && powerDemand < 50) {
mode = ELECTRIC_MODE; // Low power demand and sufficient battery SOC, operate in Electric
Mode
} else {
switch(mode) {
case ELECTRIC_MODE:
electricMode();
break;
fuelCellMode();
break;
case HYBRID_MODE:
hybridMode();
break;
default:
printf("Invalid mode\n");
return 0;
CONCLUSIONS: