simulink提示错误Invalid OutputTimes specified in the Configuration Parameters dialog for block diagram

rt,这个错误出现了很多次,网上查到的解决办法是把solver的变步长换成定步长,换了以后确实不报错了,但运算速度也慢出了天际。。。

花时间找了一下,终于发现是Data Import/Export中设置的问题,把Additional Parameters里的Output options改为refine output即可。如图:

simulink提示错误Invalid OutputTimes specified in the Configuration Parameters dialog for block diagram_第1张图片

 

simulink提示错误Invalid OutputTimes specified in the Configuration Parameters dialog for block diagram_第2张图片

 

以下是help中对这一选项的解释:

Output options

Description

Select options for generating additional output signal data for variable-step solvers.

Category: Data Import/Export

Settings

Default: Refine output

Refine output

Generates data output between, as well as at, simulation times steps. Use Refine factor to specify the number of points to generate between simulation time steps. For more information, see Refine Output.

Produce additional output

Generates additional output at specified times. Use Output times to specify the simulation times at which Simulink® software generates additional output.

Produce specified output only

Use Output times to specify the simulation times at which Simulink generates output, in addition to the simulation start and stop times.

=====================================分割线(假装有表情包)======================================

找到了频繁导致simulink提示这个错误的根本原因。。。

在使用parameter estimation进行参数估计时,需要添加experiments,我是以[Time Data]这样的形式进行添加的。其中Time是仿真时间,Data是对应的数据,定义在Base Workspace中。今天发现我在定义时,Time序列的后面跟了几个0,应该是之前处理数据时不小心加进去的,结果就是导致Time不是一个单调的序列。根据之前学习的参数估计代码来看,simulink要求Time是一个时间序列,不知道需不需要递增,但至少是要保持单调的,所以才会一直报错。删掉尾巴上的0以后一切都正常了。。。

simulink提示错误Invalid OutputTimes specified in the Configuration Parameters dialog for block diagram_第3张图片

你可能感兴趣的:(matlab)