Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

How can i show mesh in FDTD ? Layers of mesh antenna

Status
Not open for further replies.

sara67

Banned
Joined
Dec 2, 2012
Messages
32
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,286
Activity points
0
I wrote a FDTD code for spiral antenna
I want to check my structure but i cant see layers of mesh antenna
every body know that ?
how can i see layers of mesh antenna?
 

I think you write your 3D-FDTD codes with MATLAB, so you have a 3D Matrix.
for example, You can use A:),:,10) to illustrate toyr layers.
 

Hi hamidreza
thx for your answer
but I didnt understand it, I want to see PEC layer and dielectric layer
for example i want to see my cell :

ie=41; %number of grid cells in x-direction
je=41; %number of grid cells in y-direction
ke=6; %number of grid cells in z-direction

nx=ie+1;
ny=je+1;
nz=ke+1;


is=20; %location of source
js=20; %location of source
ks=ke; %location of source

How can i see these?
thank you


dx=0.0013; %cells dimention(mm)
dy=dx; %cells dimention(mm)
dz=0.00013; %cells dimention(mm)
dt = dz/(sqrt(3)*c); %time step

nmax=1000; %total number of time steps

%***********************************************************************
% Field arrays
%***********************************************************************

ex=zeros(ie,ny,nz);
ey=zeros(nx,je,nz);
ez=zeros(nx,ny,ke);
hx=zeros(nx,je,ke);
hy=zeros(ie,ny,ke);
hz=zeros(ie,je,nz);
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top