필터 지우기
필터 지우기

Gear shifting scenario to overcome all resistance forces with using switch

조회 수: 3 (최근 30일)
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.

채택된 답변

Geetla Sindhu
Geetla Sindhu 2022년 11월 10일
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개)

카테고리

Help CenterFile Exchange에서 Gears에 대해 자세히 알아보기

제품


릴리스

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by