
How can I plot default tiremodel properties (type MF) for specific Fz using the vehicle dynamics blockset?
조회 수: 5 (최근 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!