Skip to content
Snippets Groups Projects
Commit 515e080f authored by Stéphane Adjemian's avatar Stéphane Adjemian
Browse files

Do not compute static residuals if steady state routine failed.

Avoids cryptic model dependent error message.
parent 09e7dde0
No related branches found
No related tags found
1 merge request!1381PR for #1286
......@@ -87,7 +87,13 @@ if info(1) == 0
end
else
if options_.noprint == 0
resid;
if ~isempty(steady_state)
resid;
else
skipline()
disp('Residuals of the static equations cannot be computed because the steady state routine returned an empty vector.')
skipline()
end
end
if options_.debug
fprintf('\nThe steady state computation failed. It terminated with the following values:\n')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment