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!