openEMS/matlab/private/invoke_openEMS.m

50 lines
1.1 KiB
Matlab
Raw Normal View History

function invoke_openEMS( opts, logfile, silent )
% function invoke_openEMS( opts, logfile, silent )
%
% internal method to invoke openEMS, use RunOpenEMS instead
%
% See also RunOpenEMS
%
% openEMS matlab interface
% -----------------------
% author: Sebastian Held, Thorsten Liebig
2010-05-03 20:09:40 +00:00
if nargin < 1
error 'specify the xml file to simulate'
end
if nargin < 3
silent = 0;
end
if (nargin < 2) || isempty(logfile)
if isunix
logfile = '/dev/null';
else
logfile = 'nul:';
end
end
2010-05-03 20:09:40 +00:00
filename = mfilename('fullpath');
dir = fileparts( filename );
2012-11-16 20:44:46 +00:00
2010-05-03 20:09:40 +00:00
if isunix
openEMS_bin = searchBinary('openEMS.sh',[dir filesep '..' filesep '..' filesep]);
else % assume windows
openEMS_bin = searchBinary('openEMS.exe',[dir filesep '..' filesep '..' filesep]);
end
if (isempty(openEMS_bin))
error('openEMS:invoke_openEMS', 'openEMS binary not found!');
2010-05-03 20:09:40 +00:00
end
command = [openEMS_bin ' ' opts];
if ~silent
if (isunix && nargin>1)
command = [command ' 2>&1 | tee ' logfile];
end
else
command = [command ' > ' logfile ' 2>&1'];
end
2010-05-03 20:09:40 +00:00
system(command);