Does fixed point tool has any influence on MIL or SIL?
3 ビュー (過去 30 日間)
古いコメントを表示
Dear Sir or Madam, I would like to learn something about fixed point tool just like the title from you. Does fixed point tool data type has any influence on MIL or SIL? If i use fixed point tool data type,whether the test case or test results has any different with the same model beside without useing fixed point tool data type? Another question,whether it is necessary to do SIL test if i do not use fixed point data type? Thank you.
Yang
0 件のコメント
回答 (2 件)
Rong Mi
2018 年 8 月 8 日
May I ask whether you are using Simulink Test product in your workflow? And which release are you using? Thank you.
TAB
2018 年 8 月 9 日
編集済み: TAB
2018 年 8 月 9 日
Fixed point data types are less accurate (but fast in execution) alternative for floating point data types (single & double).
If you have a floating point model, then your calculation outputs in model will have real values with more accuracy. For example a signal PRESSURE can have value of 25.356568978.
If you convert same model to Fixed point, you need to scale each floating point signal to a fixed point type with required resolution.
Signals in your fixed point model will have accuracy based on scaling. For example PRESSURE can have value of 25.35, 25.40 etc (here resolution is 0.05)
So...
If you test a floating point model and then convert it to Fixed point and test again, results will be different.
Also...
MIL test is used to check the correctness of logic/algorithm of your model.
SIL test used to check the correctness of generated code (there can be bug or issues with code generation process also)
So this is upto your project to decide which testings you need based on project complexity, model complexity, available tools etc.
2 件のコメント
参考
カテゴリ
Help Center および File Exchange で Test Model Components についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!