openEMS/matlab/examples/waveguide/Rect_Waveguide.m

83 lines
2.2 KiB
Matlab
Raw Normal View History

2010-04-30 12:56:46 +00:00
close all
clear
2010-04-06 14:56:41 +00:00
clc
2010-04-24 14:47:40 +00:00
%% setup the simulation %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2010-07-14 12:25:09 +00:00
length = 8000;
2010-04-06 14:56:41 +00:00
unit = 1e-3;
a = 1000;
width = a;
b = 500;
height = b;
mesh_res = [10 10 20];
%define mode
m = 1;
n = 0;
EPS0 = 8.85418781762e-12;
MUE0 = 1.256637062e-6;
C0 = 1/sqrt(EPS0*MUE0);
f0 = 1e9;
k = 2*pi*f0/C0;
kc = sqrt((m*pi/a/unit)^2 + (n*pi/b/unit)^2);
2010-04-30 12:56:46 +00:00
fc = C0*kc/2/pi;
2010-04-06 14:56:41 +00:00
beta = sqrt(k^2 - kc^2);
func_Ex = [num2str(n/b/unit) '*cos(' num2str(m*pi/a) '*x)*sin(' num2str(n*pi/b) '*y)'];
func_Ey = [num2str(m/a/unit) '*sin(' num2str(m*pi/a) '*x)*cos(' num2str(n*pi/b) '*y)'];
2010-04-30 12:56:46 +00:00
%% define and openEMS options %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2010-04-06 14:56:41 +00:00
openEMS_opts = '';
% openEMS_opts = [openEMS_opts ' --disable-dumps'];
% openEMS_opts = [openEMS_opts ' --debug-material'];
2010-07-14 12:25:09 +00:00
openEMS_opts = [openEMS_opts ' --engine=fastest'];
2010-04-06 14:56:41 +00:00
Sim_Path = 'tmp';
Sim_CSX = 'rect_wg.xml';
if (exist(Sim_Path,'dir'))
rmdir(Sim_Path,'s');
end
2010-04-06 14:56:41 +00:00
mkdir(Sim_Path);
2010-04-24 14:47:40 +00:00
%% setup FDTD parameter & excitation function %%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2010-07-14 12:25:09 +00:00
FDTD = InitFDTD(50000,1e-5,'OverSampling',6);
FDTD = SetGaussExcite(FDTD,f0,f0/3);
BC = [0 0 0 0 2 2];
2010-04-06 14:56:41 +00:00
FDTD = SetBoundaryCond(FDTD,BC);
2010-04-24 14:47:40 +00:00
%% setup CSXCAD geometry & mesh %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2010-04-06 14:56:41 +00:00
CSX = InitCSX();
mesh.x = 0 : mesh_res(1) : width;
mesh.y = 0 : mesh_res(2) : height;
mesh.z = 0 : mesh_res(3) : length;
2010-04-06 14:56:41 +00:00
CSX = DefineRectGrid(CSX, unit,mesh);
2010-04-24 14:47:40 +00:00
%% apply the excitation %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2010-07-14 12:25:09 +00:00
start=[0 0 mesh.z(3) ];
stop =[width height mesh.z(3) ];
2010-04-06 14:56:41 +00:00
CSX = AddExcitation(CSX,'excite',0,[1 1 0]);
weight{1} = func_Ex;
weight{2} = func_Ey;
weight{3} = 0;
CSX = SetExcitationWeight(CSX,'excite',weight);
CSX = AddBox(CSX,'excite',0 ,start,stop);
2010-04-24 14:47:40 +00:00
%% define dump boxes... %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2010-07-14 12:25:09 +00:00
CSX = AddDump(CSX,'Et','FileType',0,'SubSampling','4,4,1');
start = [mesh.x(1) , height/2 , mesh.z(1)];
stop = [mesh.x(end) , height/2 , mesh.z(end)];
2010-04-06 14:56:41 +00:00
CSX = AddBox(CSX,'Et',0 , start,stop);
2010-07-14 12:25:09 +00:00
% CSX = AddDump(CSX,'Ht','DumpType',1,'FileType',1,'SubSampling','4,4,4');
% CSX = AddBox(CSX,'Ht',0,start,stop);
2010-04-06 14:56:41 +00:00
2010-04-24 14:47:40 +00:00
%% Write openEMS compatoble xml-file %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2010-04-06 14:56:41 +00:00
WriteOpenEMS([Sim_Path '/' Sim_CSX],FDTD,CSX);
2010-07-14 12:25:09 +00:00
RunOpenEMS(Sim_Path, Sim_CSX, openEMS_opts)
2010-04-06 14:56:41 +00:00