How to create juliens theory tire model in simulink
2 ビュー (過去 30 日間)
古いコメントを表示
Juliens theory tire model graphs
0 件のコメント
回答 (1 件)
Varun
2024 年 1 月 24 日
Hi Mahendran,
It seems like you want to implement tire model in simulink using Julien's therory.
You can use MATLAB Function block to implement the tire model equations using Julien's theory. Create a function "JulienTireModel" which takes the inputs like slip ratio, slip angle and connect the outputs like longitudinal force, lateral force to the rest of your simulation model.
Please refer to the following code snippet inside a MATLAB function block:
function [Fx, Fy] = JulienTireModel(alpha, gamma)
% Parameters
B = 10; % Example parameter, adjust according to your specific model
C = 1.2; % Example parameter, adjust according to your specific model
% Tire model equations
Fx = B * alpha;
Fy = C * gamma;
end
You can also refer to the following resources that might be helpful for you task:
“matlabFunctionBlock”: https://www.mathworks.com/help/symbolic/sym.matlabfunctionblock.html?s_tid=doc_ta
“Wheels and Tires”: https://www.mathworks.com/help/vdynblks/brakes-and-wheels.html
“Parameters Estimation of a Tire Model Based on Julien’s Theory”: https://www.sae.org/publications/technical-papers/content/2017-36-0177/
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!