Gear shifting scenario to overcome all resistance forces with using switch
2 views (last 30 days)
Show older comments
Batuhan Uyaniker
on 7 Nov 2022
Answered: Geetla Sindhu
on 10 Nov 2022
My input is the driving cycle and my outputs are engine efficiency and consumption maps. I should be able to change my gears according to the velocity information inside the driving cycle with using switch more than 1. How can i add more than 2 gears with switch into the system? (5-gear transmission vehicle with ig1-2-3-4-5) Or i can prepare the same system in matlab code instead of simulink how can i do that? The system that i tried to do is in the picture but i don' think it's working properly.
0 Comments
Accepted Answer
Geetla Sindhu
on 10 Nov 2022
Hello Batuhan,
I understand that you are using velocity information to change the gears accordingly.
You can use the MATLAB Function block as an alternative for the switches.
You can try this example considering the output as the gear number:
Here the input signal (in your case, it is velocity signal) is considered to be Repeating Sequence with ‘Time values’ = [0 2] and ‘Output values’ = [0 2].
function y = fcn(u)
if (u<0.5)
y=1;
elseif (u>=0.5 && u<0.75)
y=2;
elseif (u>=0.75 && u<1)
y=3;
elseif (u>=1 && u<1.5)
y=4;
else
y=5;
end
The image shown above gives the gear number (output) with changing velocity (input).
Thank you.
0 Comments
More Answers (0)
See Also
Categories
Find more on Gears in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!