External application stalls and locks up Matlab, tic/toc delay check does not work to pull Matlab out of stall.
Show older comments
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 Comments
Walter Roberson
on 30 Jun 2022
Change your code to use the System. Diagnostics.Process to launch the process. You can use the interface to kill the process if it takes too long.
Austin Stark
on 30 Jun 2022
Austin Stark
on 1 Jul 2022
Edited: Austin Stark
on 1 Jul 2022
Voss
on 1 Jul 2022
% cmd = sprintf('taskkill /PID %d', p(1).Id, '/F');
cmd = sprintf('taskkill /PID %d /F', p(1).Id);
Walter Roberson
on 2 Jul 2022
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.
Answers (0)
Categories
Find more on PID Controller Tuning in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!