Inlined tunable parameter values because of using different data type then double-precision

25 views (last 30 days)
Currently I am having the following problem when using tunable parameters with data types (uint8, single, etc.) other than double-precision data type in our generated code.
Example: When we want to define initial condition values for merge blocks which are taken from tunable parameters in the model attached data dictionary we get the following error:
The numeric value of the expression 'par_DEI_EnvIllum(2)' (used in parameter 'InitialOutput' of '**/CEI_Merge') because block '**/CEI_Merge' only supports double-precision tunable parameter expressions. The code for this block will not use the tunable variables (par_DEI_EnvIllum (**.sldd)
Tunable Parameter used in initial condition
How can we solve such behaviour, do we really need to define the parameters with double-precision data types, because we won't to get rid of such data type as in the embedded unit this would result into much more computational effort for the MCU. Therefore we would like to use our integer or single-precision data types.

Answers (1)

Mark McBroom
Mark McBroom on 16 Nov 2024 at 22:40
Edited: Mark McBroom on 16 Nov 2024 at 22:41
You can either set the data to the proper data type in the data dictionary, or you can cast the value in the block dialog. For example, single(par_DEI_EnvIllum(2))
  1 Comment
Simon
Simon on 19 Nov 2024 at 12:22
Hello Mark!
We want to avoid any additional computational effort and therefore want to avoid any double-precision datat type to be used in the generated code. Therefore changing the data type in the data dictionary is not an option for us.
Your second suggestion I already tested, but this results into the same behaviour and warning ... So it seems casting is not working for such initial condition/value setting as far as I can see.
Do you perhaps have another suggestion for me to try, otherwise we need to live as of now with the warning + behaviour => but this shall be considered for any update to Matlab 2024a and newer verison

Sign in to comment.

Categories

Find more on AUTOSAR Blockset in Help Center and File Exchange

Products


Release

R2024a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!