绘制波导中的电场和磁场线

时间:2013-12-16 18:47:32

标签: matlab telecommunication

我正在阅读关于不同波导中电磁传播的pdf,我想知道图中所示的这些图如何在MATLAB中可视化。

enter image description here

对于矩形波导,我有ExEyHxHz的解决方案,我正在尝试绘制TE11模式的场线。我曾尝试使用meshgridstreamslice,但根本无法使用。

1 个答案:

答案 0 :(得分:1)

% vector Field 2D
[X, Y, Z] = meshgrid(-10:1:10,-10:1:10,-10:1:10);
syms x y z 
V2(1) = -5*x;
V2(2) = x*y;
V2(3) = 0;
V1sub = subs(V2(1),[x,y,z],{X,Y,Z});
V2sub = subs(V2(2),[x,y,z],{X,Y,Z});
quiver(X,Y,V1sub,V2sub,2)
title('Vector field of V1')