Gear shifting scenario to overcome all resistance forces with using switch

3 visualizaciones (últimos 30 días)
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.

Respuesta aceptada

Geetla Sindhu
Geetla Sindhu el 10 de Nov. de 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.

Más respuestas (0)

Categorías

Más información sobre Gears en Help Center y File Exchange.

Productos


Versión

R2022b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by