2010-07-14 11:09:18 +00:00
|
|
|
function UI = ReadUI(files, path, freq)
|
|
|
|
% function UI = ReadUI(files, path, freq)
|
2010-04-24 14:43:22 +00:00
|
|
|
%
|
|
|
|
% read current and voltages from multiple files found in path
|
|
|
|
%
|
|
|
|
% returns voltages/currents in time and frequency-domain
|
2010-07-14 11:09:18 +00:00
|
|
|
%
|
|
|
|
% remarks on the frequency-domain:
|
|
|
|
% - all signals are assumed to start at t=0
|
|
|
|
% - currents that e.g. start at t = +delta_t/2 will be phase shifted by
|
|
|
|
% exp(-j*w*t(1))
|
|
|
|
%
|
|
|
|
% parameter:
|
|
|
|
% freq (optional):
|
|
|
|
% frequency-domain values will be calculated according to 'freq'
|
|
|
|
% if 'freq' is not given, a FFT will be used
|
2010-04-24 14:43:22 +00:00
|
|
|
%
|
|
|
|
% e.g.
|
2010-07-14 11:09:18 +00:00
|
|
|
% U = ReadUI({'ut1_1','ut1_2'},'tmp' );
|
|
|
|
% I = ReadUI('it1' ,'tmp',[0.5e9 1e9 1.5e9]);
|
2010-04-24 14:43:22 +00:00
|
|
|
%
|
|
|
|
% openEMS matlab interface
|
|
|
|
% -----------------------
|
|
|
|
% author: Thorsten Liebig
|
2010-03-29 20:12:01 +00:00
|
|
|
|
|
|
|
if (nargin<2)
|
|
|
|
path ='';
|
|
|
|
end
|
|
|
|
|
|
|
|
if (ischar(files))
|
|
|
|
filenames{1}=files;
|
|
|
|
else
|
|
|
|
filenames=files;
|
|
|
|
end
|
|
|
|
|
2010-04-17 19:56:16 +00:00
|
|
|
UI.TD = {};
|
|
|
|
UI.FD = {};
|
2010-03-29 20:12:01 +00:00
|
|
|
for n=1:numel(filenames)
|
2010-05-27 09:11:31 +00:00
|
|
|
tmp = load( fullfile(path,filenames{n}) );
|
2010-03-29 20:12:01 +00:00
|
|
|
t = tmp(:,1)';
|
|
|
|
val = tmp(:,2)';
|
2010-09-09 08:02:33 +00:00
|
|
|
|
2010-03-29 20:12:01 +00:00
|
|
|
UI.TD{n}.t = t;
|
|
|
|
UI.TD{n}.val = val;
|
2010-09-09 08:02:33 +00:00
|
|
|
|
|
|
|
if (numel(tmp(1,:))>2)
|
|
|
|
UI.TD{n}.additional = tmp(:,3:end)';
|
|
|
|
end
|
2010-03-29 20:12:01 +00:00
|
|
|
|
2010-12-16 09:33:06 +00:00
|
|
|
if (nargin<3) || isempty(freq)
|
2010-07-14 11:09:18 +00:00
|
|
|
[UI.FD{n}.f,UI.FD{n}.val] = FFT_time2freq( t,val );
|
|
|
|
else
|
|
|
|
UI.FD{n}.f = freq;
|
|
|
|
UI.FD{n}.val = DFT_time2freq( t, val, freq );
|
|
|
|
end
|
|
|
|
|
|
|
|
%correct phase error for time-shifted signals
|
|
|
|
UI.FD{n}.val = UI.FD{n}.val .* exp(-1j*2*pi*UI.FD{n}.f * t(1));
|
2010-03-30 11:13:27 +00:00
|
|
|
end
|