Simulink Unable to Identify Variable in Base Workspace
14 次查看(过去 30 天)
显示 更早的评论
I am running a program which calls Simulink, however when simulink gets called I get this error:
Error using Run_Sim (line 39)
Error evaluating expression 'Tsim' for 'StopTime' specified in the Configuration
Parameters dialog for block diagram 'New_model_working_plecs_2012b': Undefined function or
variable 'Tsim'.
however, Tsim is in the base workspace so im not sure what is going wrong here, this file also runs fine matlab 2012
0 个评论
回答(2 个)
Sebastian Castro
2016-6-2
Are you calling the command from inside a MATLAB function?
If so, you need to make sure to tell the sim command to use the current caller's (the function's) workspace.
simout = sim('modelName','SrcWorkspace','current', ... )
- Sebastian
Arihant Sureka
2018-9-19
编辑:Sebastian Castro
2018-9-19
Hi Sebastian
The Version is Matlab 2017b and still the Problem persists. I have already defined my model properties in the base Workspace but Simulink is not able to capture it. Also, this command line
simOut = parsim(simIn,'SrcWorkspace','current');
gives an error
'Invalid parameter 'SrcWorkspace' specified'.
Please guide further as there isn#t any answer available anywhere.
Thanks
2 个评论
Sebastian Castro
2018-9-19
Your question is on parsim and not sim, which are different functions. As the error message suggests, parsim does not have a SrcWorkspace property to configure.
Looking at the documentation, and depending on how your data is set up, you either want to use AttachedFiles or TransferBaseWorkspaceVariables.
- Sebastian
Arihant Sureka
2018-9-21
Hi Sebastien
The thing worked. Thanks for the help but since the Matlab 2017b has Bugs I had to clear the previously created slprj Folder and stuff.
Thanks and cheers!
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Dependency Analysis 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!