How can I plot default tiremodel properties (type MF) for specific Fz using the vehicle dynamics blockset?
2 次查看(过去 30 天)
显示 更早的评论
Hello,
I am trying use to the tiremodel(MF) default Model parameter to plot properties for Fz=4000? I know I can just use the following
tm = tireModel.new("MF")
plot(tm)
But I would like to see if I can plot for specific values of Fz or other parameters (gamma, kappa, etc)
Thanks,
0 个评论
回答(1 个)
Matthew
2024-5-23
Hi Ricardo,
Using additional optional input arguments, you can specify which variables to plot at which conditions.
For example:
tm = tireModel.new("MF");
plot(tm,"Direction","alpha","DataVariableNames",["alpha","Fy"],"Fz",[2000,4000,6000],"gamma",0)
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Wheels and Tires 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!