updated calcPort.m to return time- and frequency domain currents and voltages

pull/1/head
Sebastian Held 2011-02-04 09:38:15 +01:00
parent ef5a4ee59f
commit aacd0964fb
2 changed files with 73 additions and 9 deletions

View File

@ -1,5 +1,5 @@
function [S11,beta,ZL] = calcPort( portstruct, SimDir, f, ref_shift ) function [S11,beta,ZL,vi] = calcPort( portstruct, SimDir, f, ref_shift )
%[S11,beta,ZL] = calcMSLPort( portstruct, SimDir, [f], [ref_shift] ) %[S11,beta,ZL,vi] = calcPort( portstruct, SimDir, [f], [ref_shift] )
% %
% Calculate the reflection coefficient S11, the propagation constant beta % Calculate the reflection coefficient S11, the propagation constant beta
% of the MSL-port and the characteristic impedance ZL of the MSL-port. % of the MSL-port and the characteristic impedance ZL of the MSL-port.
@ -15,6 +15,9 @@ function [S11,beta,ZL] = calcPort( portstruct, SimDir, f, ref_shift )
% S11: reflection coefficient (normalized to ZL) % S11: reflection coefficient (normalized to ZL)
% beta: propagation constant % beta: propagation constant
% ZL: characteristic line impedance % ZL: characteristic line impedance
% vi: structure of voltages and currents
% vi.TD.v.{val,t}; vi.TD.i.{val,t};
% vi.FD.v.{val,val_shifted,f}; vi.FD.i.{val,val_shifted,f};
% %
% reference: W. K. Gwarek, "A Differential Method of Reflection Coefficient Extraction From FDTD Simulations", % reference: W. K. Gwarek, "A Differential Method of Reflection Coefficient Extraction From FDTD Simulations",
% IEEE Microwave and Guided Wave Letters, Vol. 6, No. 5, May 1996 % IEEE Microwave and Guided Wave Letters, Vol. 6, No. 5, May 1996
@ -43,6 +46,16 @@ U = ReadUI( {[filename 'A'],[filename 'B'],[filename 'C']}, SimDir, f );
filename = ['port_it' num2str(portstruct.nr)]; filename = ['port_it' num2str(portstruct.nr)];
I = ReadUI( {[filename 'A'],[filename 'B']}, SimDir, f ); I = ReadUI( {[filename 'A'],[filename 'B']}, SimDir, f );
% store the original time domain waveforms
vi.TD.v = U.TD{2};
vi.TD.i.t = I.TD{1}.t;
vi.TD.i.val = (I.TD{1}.val + I.TD{2}.val) / 2; % shift to same position as v
% store the original frequency domain waveforms
vi.FD.v = U.FD{2};
vi.FD.i = I.FD{1};
vi.FD.i.val = (I.FD{1}.val + I.FD{2}.val) / 2; % shift to same position as v
f = U.FD{2}.f; f = U.FD{2}.f;
Et = U.FD{2}.val; Et = U.FD{2}.val;
dEt = (U.FD{3}.val - U.FD{1}.val) / (sum(abs(portstruct.v_delta(1:2))) * portstruct.drawingunit); dEt = (U.FD{3}.val - U.FD{1}.val) / (sum(abs(portstruct.v_delta(1:2))) * portstruct.drawingunit);
@ -89,4 +102,9 @@ if (nargin > 3)
ref_shift = ref_shift * portstruct.drawingunit; ref_shift = ref_shift * portstruct.drawingunit;
S11 = S11 .* exp(2i*real(beta)*ref_shift); S11 = S11 .* exp(2i*real(beta)*ref_shift);
S11_corrected = S11_corrected .* exp(2i*real(beta)*ref_shift); S11_corrected = S11_corrected .* exp(2i*real(beta)*ref_shift);
% store the shifted frequency domain waveforms
phase = real(beta)*ref_shift;
vi.FD.v.val_shifted = vi.FD.v.val .* cos(-phase) + 1i * vi.FD.i.val.*ZL .* sin(-phase);
vi.FD.i.val_shifted = vi.FD.i.val .* cos(-phase) + 1i * vi.FD.v.val./ZL .* sin(-phase);
end end

View File

@ -12,6 +12,8 @@
% - MSL port % - MSL port
% - MSL analysis % - MSL analysis
% %
% You may modify the PEC boundary condition at xmax to become a MUR
% boundary. This resembles a matched microstrip line.
% %
% Tested with % Tested with
% - Matlab 2009b % - Matlab 2009b
@ -92,7 +94,9 @@ CSX = AddBox( CSX, 'Ht_', 0, start, stop );
WriteOpenEMS( [Sim_Path '/' Sim_CSX], FDTD, CSX ); WriteOpenEMS( [Sim_Path '/' Sim_CSX], FDTD, CSX );
%% show the structure %% show the structure
CSXGeomPlot( [Sim_Path '/' Sim_CSX] ); if ~postproc_only
CSXGeomPlot( [Sim_Path '/' Sim_CSX] );
end
%% run openEMS %% run openEMS
openEMS_opts = ''; openEMS_opts = '';
@ -107,7 +111,7 @@ end
%% postprocess %% postprocess
f = linspace( 1e6, f_max, 1601 ); f = linspace( 1e6, f_max, 1601 );
U = ReadUI( {'port_ut1A','port_ut1B','et'}, 'tmp/', f ); U = ReadUI( {'port_ut1A','port_ut1B','port_ut1C','et'}, 'tmp/', f );
I = ReadUI( {'port_it1A','port_it1B'}, 'tmp/', f ); I = ReadUI( {'port_it1A','port_it1B'}, 'tmp/', f );
% Z = (U.FD{1}.val+U.FD{2}.val)/2 ./ I.FD{1}.val; % Z = (U.FD{1}.val+U.FD{2}.val)/2 ./ I.FD{1}.val;
@ -119,12 +123,12 @@ I = ReadUI( {'port_it1A','port_it1B'}, 'tmp/', f );
% title( 'line impedance (will fail in case of reflections!)' ); % title( 'line impedance (will fail in case of reflections!)' );
figure figure
ax = plotyy( U.TD{1}.t/1e-6, [U.TD{1}.val;U.TD{2}.val], U.TD{3}.t/1e-6, U.TD{3}.val ); ax = plotyy( U.TD{1}.t/1e-6, [U.TD{1}.val;U.TD{2}.val;U.TD{3}.val], U.TD{4}.t/1e-6, U.TD{4}.val );
xlabel( 'time (us)' ); xlabel( 'time (us)' );
ylabel( 'amplitude (V)' ); ylabel( 'amplitude (V)' );
grid on grid on
title( 'Time domain voltage probes and excitation signal' ); title( 'Time domain voltage probes and excitation signal' );
legend( {'ut1A','ut1B','excitation'} ); legend( {'ut1A','ut1B','ut1C','excitation'} );
% now make the y-axis symmetric to y=0 (align zeros of y1 and y2) % now make the y-axis symmetric to y=0 (align zeros of y1 and y2)
y1 = ylim(ax(1)); y1 = ylim(ax(1));
y2 = ylim(ax(2)); y2 = ylim(ax(2));
@ -139,8 +143,26 @@ grid on
title( 'Time domain current probes' ); title( 'Time domain current probes' );
legend( {'it1A','it1B'} ); legend( {'it1A','it1B'} );
figure
ax = plotyy( U.FD{1}.f/1e9, abs([U.FD{1}.val;U.FD{2}.val;U.FD{3}.val]), U.FD{1}.f/1e9, angle([U.FD{1}.val;U.FD{2}.val;U.FD{3}.val])/pi*180 );
xlabel( 'frequency (GHz)' );
ylabel( ax(1), 'amplitude (A)' );
ylabel( ax(2), 'phase (deg)' );
grid on
title( 'Frequency domain voltage probes' );
legend( {'abs(uf1A)','abs(uf1B)','abs(uf1C)','angle(uf1A)','angle(uf1B)','angle(uf1C)'} );
figure
ax = plotyy( I.FD{1}.f/1e9, abs([I.FD{1}.val;I.FD{2}.val]), I.FD{1}.f/1e9, angle([I.FD{1}.val;I.FD{2}.val])/pi*180 );
xlabel( 'frequency (GHz)' );
ylabel( ax(1), 'amplitude (A)' );
ylabel( ax(2), 'phase (deg)' );
grid on
title( 'Frequency domain current probes' );
legend( {'abs(if1A)','abs(if1B)','angle(if1A)','angle(if1B)'} );
% port analysis % port analysis
[S11,beta,ZL] = calcMSLPort( portstruct, Sim_Path, f ); [S11,beta,ZL,vi] = calcPort( portstruct, Sim_Path, f );
% attention! the reflection coefficient S11 is normalized to ZL! % attention! the reflection coefficient S11 is normalized to ZL!
figure figure
@ -153,6 +175,18 @@ plot( real(S11(1)), imag(S11(1)), '*r' );
axis equal axis equal
title( 'Reflection coefficient S11 at the measurement plane' ); title( 'Reflection coefficient S11 at the measurement plane' );
figure
plot( sin(0:0.01:2*pi), cos(0:0.01:2*pi), 'Color', [.7 .7 .7] );
hold on
plot( 0.5+0.5*sin(0:0.01:2*pi), 0.5*cos(0:0.01:2*pi), 'Color', [.7 .7 .7] );
plot( [-1 1], [0 0], 'Color', [.7 .7 .7] );
Z = vi.FD.v.val ./ vi.FD.i.val;
S11_ = (Z-ZL) ./ (Z+ZL);
plot( S11_, 'k' );
plot( real(S11_(1)), imag(S11_(1)), '*r' );
axis equal
title( {'Reflection coefficient S11 at the measurement plane' 'calculated from voltages and currents'} );
figure figure
plot( f/1e9, [real(S11);imag(S11)], 'Linewidth',2 ); plot( f/1e9, [real(S11);imag(S11)], 'Linewidth',2 );
legend( {'Re(S11)', 'Im(S11)'} ); legend( {'Re(S11)', 'Im(S11)'} );
@ -184,7 +218,7 @@ title( 'Characteristic line impedance ZL' );
% reference plane shift (to the end of the port) % reference plane shift (to the end of the port)
ref_shift = abs(portstop(1) - portstart(1)); ref_shift = abs(portstop(1) - portstart(1));
[S11,beta,ZL] = calcMSLPort( portstruct, Sim_Path, f, ref_shift ); [S11,beta,ZL,vi] = calcPort( portstruct, Sim_Path, f, ref_shift );
figure figure
plotyy( f/1e9, 20*log10(abs(S11)), f/1e9, angle(S11)/pi*180 ); plotyy( f/1e9, 20*log10(abs(S11)), f/1e9, angle(S11)/pi*180 );
@ -202,6 +236,18 @@ plot( real(S11(1)), imag(S11(1)), '*r' );
axis equal axis equal
title( 'Reflection coefficient S11 at the reference plane (at the electric wall)' ); title( 'Reflection coefficient S11 at the reference plane (at the electric wall)' );
figure
plot( sin(0:0.01:2*pi), cos(0:0.01:2*pi), 'Color', [.7 .7 .7] );
hold on
plot( 0.5+0.5*sin(0:0.01:2*pi), 0.5*cos(0:0.01:2*pi), 'Color', [.7 .7 .7] );
plot( [-1 1], [0 0], 'Color', [.7 .7 .7] );
Z = vi.FD.v.val_shifted ./ vi.FD.i.val_shifted;
S11_ = (Z-ZL) ./ (Z+ZL);
plot( S11_, 'k' );
plot( real(S11_(1)), imag(S11_(1)), '*r' );
axis equal
title( {'Reflection coefficient S11 at the reference plane (at the electric wall)' 'calculated from shifted voltages and currents'} );
%% visualize electric and magnetic fields %% visualize electric and magnetic fields
% you will find vtk dump files in the simulation folder (tmp/) % you will find vtk dump files in the simulation folder (tmp/)
% use paraview to visualize them % use paraview to visualize them