Defining sample Time of Model Reference block by using model mask

7 次查看(过去 30 天)
Hello everybody,
I have a model that contains a controller. I want that model's sample time and a few sample times inside the model to be specified by a specific value that I can enter using a model mask. I tried setting the sample time of the model and the sample times of a few other blocks to "sampleTime", then I defined a new matlab variable in the model workspace called "sampleTime" and ticked the "argument" checkbox. Then I created a mask in order to specifiy that sample time, however when simulating the model as a model reference block, simulink gives me the error "Parameter 'SampleTime' of 'singlePid/i_nomA_dig' (and also for all other blocks where the sample Time was specified) is non-tunable but refers to model arguments (sampleTime)". Is there a way to set the parameter to tunable? Or is there any other way to specify that value?
Greetings,
David

回答(1 个)

TAB
TAB 2018-5-30
Model can resolve the sample time from base workspace only.
Just create the variable "sampleTime" in base workspace. In your mask, use mask initialization to change the value of "sampleTime".
For example: If you have edit dialog in mask and its name is mskChildMdlSampleT, then write below in maks initialization pane:
assignin('base', 'sampleTime', mskChildMdlSampleT);
  1 个评论
qfladen
qfladen 2018-6-5
Hi Tabrez, I understand that for the sample time of the model itself. However, even when I set the model sample time to some fixed value, I still can not specify other sample times, e.g. a port sample time. The error message is
Parameter 'SampleTime' of 'singlePid/i_nomA_dig' is non-tunable but refers to model arguments (sampleTime)
Is there any way to solve that?

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Subsystems 的更多信息

产品


版本

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by