Does fixed point tool has any influence on MIL or SIL?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Respuestas (2)
Rong Mi
el 8 de Ag. de 2018
May I ask whether you are using Simulink Test product in your workflow? And which release are you using? Thank you.
TAB
el 9 de Ag. de 2018
Editada: TAB
el 9 de Ag. de 2018
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 comentarios
Ver también
Categorías
Más información sobre Test Model Components en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!