Welcome. Here you can learn about Matlab based Tutorials, Applications and Projects etc. Also, you can download free Matlab simulink/ Script files used in the demo/tutorial sessions. Keep Support Me..
Sunday, 23 January 2022
Thursday, 20 January 2022
Implementation of Shortest Control Path Finder for a Hybrid Electrical Vehicle Control using Matlab Simulink
Implementation of Shortest Control Path Finder for a Hybrid Electrical Vehicle Control using Matlab Simulink
This example shows how to find the shortest control path for a hybrid electrical vehicle using Signal Tracing Command-line API.
In this model, a Hybrid Electrical Vehicle drives on a slope and the initial speed is 0 m/s.
Set the target speed to 30 m/s.
In Driver, a PID control compares the actual speed with the target speed and sends a command to increase or decrease speed to the power demand estimation module.
Power demand estimation converts to the desired power, and the power is primarily provided by the electrical motor.
If electrical motor is unable to provide enough torque, then the engine and provides additional torque.
In Vehicle Dynamic, road resistance including rolling resistance and gravity resistance as well as the aero drag are calculated.
The actual speed of the vehicle is constantly returned to Driver through the feedback loop until the vehicle reaches the target speed.
1) Trace All Sources that Control the Actual Speed
2)Obtain the Trace Graph
3) Find the Shortest Path from Trace graph
4) Simulation : Shortest Control Path for a Hybrid Electrical Vehicle
Click here to download the demo files:
https://drive.google.com/file/d/1NU4jML0j8DzMxP0Z43Q9okayTCyolLPf/view?usp=sharing
https://drive.google.com/file/d/1XRuV44_9TzpHn6G2qJ0rOnLEL29yhai4/view?usp=sharing
Kindly Subscribe My YouTube Channel...
Please like, share and comments on My Videos 🙏
Please click the below links to Subscribe/Join & View my Videos
https: //www.youtube.com/c/DrMSivakumar
For More Details about this Video Join/ View the following
Telegram : t.me/Dr_MSivakumar
website : drmsivakumar78.blogspot.com
Sunday, 16 January 2022
Design & Analysis of Indoor Digital TV Rx & Broadcasting System using Discone Antenna
Design & Analysis of Indoor Digital TV Rx & Broadcasting System using Discone Antenna
This example shows how to design and implement a discone antenna for indoor use in digital TV receiving and transmitting systems.
Discone antennas are wide bandwidth and omnidirectional radiation antennas that are widely used in VHF and UHF broadcasting systems.
The described antenna provides matched bandwidth, below -10 dB of return loss, between 460 MHz and 2.3 GHz, and provides omnidirectional radiation pattern within the considered TV band, from 470 MHz to 862 MHz.
Matlab Script:
%% Discone Antenna for Indoor Use TV Receiving & Broadcasting System
% This example shows how to design and implement a discone antenna for indoor use in digital TV receiving and transmitting systems.
%% Define Parameters
Rd = 55e-3; % Radius of disc
Rc1 = 72.1e-3; % Broad Radius of cone
Rc2 = 1.875e-3; % Narrow Radius of cone
Hc = 160e-3; % Vertical height of cone
Fw = 1e-3; % Feed Width
S = 1.75e-3; % Spacing between cone and disc
%% Create Discone Antenna
% Create a discone antenna using the defined parameters.
ant = discone;
ant.Height = Hc;
ant.ConeRadii = [Rc2 Rc1];
ant.DiscRadius = Rd;
ant.FeedHeight = S;
ant.FeedWidth = Fw;
figure;
show(ant);
title('Discone Antenna Element');
%% S-Parameters
freq = (0.1:0.01:3)*1e9;
[~] = mesh(ant,'MaxEdgeLength',10e-3);
s1 = sparameters(ant,freq);
rfplot(s1);
%% Radiation Pattern
f = 470e6;
figure;
pattern(ant,f);
%% Elevation Pattern
p1 = patternElevation(ant,470e6);
p2 = patternElevation(ant,862e6);
p3 = patternElevation(ant,1.5e9);
p4 = patternElevation(ant,3e9);
figure;
polarpattern(p1);
hold on;
polarpattern(p2);
polarpattern(p3);
polarpattern(p4);
legend ({'470MHz' '862MHz' '1500MHz' '3000MHz'});
Subscribe to:
Posts (Atom)
Uploaded Matlab Videos
-
▼
2023
(17)
-
▼
July 2023
(14)
-
▼
Jul 18
(12)
- Design & Analysis of Wireless Power Transfer for E...
- Design and Implementation of Fuzzy Logic Controlle...
- Modeling & Simulation of Home Energy Management Sy...
- Design and Simulation of Small Scale Micro Grid Us...
- Modeling & Analysis of PEM Fuel Cell System Using ...
- Design of Fuel Cell Electric Vehicle (FCEV) with B...
- Power & Energy Consumption Analysis of Hybrid Elec...
- Design & Simulation of Hybrid Electric Vehicle (HE...
- Design of On-Board Charger for Two-Wheeler Electri...
- Fault Prediction and Detection in Electric Vehicle...
- Design & Simulation of a Electric Vehicle to Grid ...
- Modeling and Simulation of an Electric Vehicle wit...
-
▼
Jul 18
(12)
-
▼
July 2023
(14)
-
►
2022
(28)
- ► October 2022 (1)
- ► April 2022 (1)
- ► March 2022 (1)