External application stalls and locks up Matlab, tic/toc delay check does not work to pull Matlab out of stall.

3 次查看(过去 30 天)
I am iteratively calling an external application (OpenVSP) in a script via:
!vsp.exe -script runCalculations.vspscript
Sometimes this external app stalls or cannot converge on a solution and Maltab is unable to recognize that the elapsed time has passed the defined limit. How can I allow Matlab to actively identify this time limit during a stall or that OpenVSP has stalled at all? I have made an effort in the following code which is unable to detect the stall and timer. My next thought is to retain the process ID but that feels like it would have the same issues.
Cheers!
clear timer
timer = tic; yourDelay = 10; checkVal = false;
while ~checkVal
if toc(timer) >= (yourDelay-1)
% Detect the stall and break while printing an error
VSP_struct(iter).VSPstall = true;
warning('VSP Stall')
break;
else
% Run the code and break out of the loop
!vsp.exe -script runCalculations.vspscript
fprintf(' Calcs Done!')
checkVal = true;
end
end
  5 个评论
Walter Roberson
Walter Roberson 2022-7-2
Does the System.Diagnostics.Process method allow Matlab to continue operating once executed rather than waiting on the process to complete like I have now?
Yes, definitely.

请先登录,再进行评论。

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 PID Controller Tuning 的更多信息

产品


版本

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by