electronics forum

Rules | Recent posts | topic RSS | Search | Register  | Log in

Help : Calculation of Dispersion Diagram


Post new topic  Reply to topic    EDAboard.com Forum Index -> Electromagnetic Design and Simulation -> Help : Calculation of Dispersion Diagram
Author Message
Good_Bad_boy



Joined: 27 Mar 2006
Posts: 2523
Helped: 1535


Post18 Nov 2006 13:45   

dispersion diagrams


Dear Friends,

My research interest is Photonic Crystals and periodic dispersive structures. As you know, dispersion diagram is one of the most important properties of periodic structures which is noticed extremely.

To calculate dispersion diagrams by FDTD, many solutions in papers are considered. one of the popular methods is FDTD to obtain dispersion diagrams in periodic structures, finite or infinite. Dispersion diagram defines relationship between wave number and frequency.

Could you help me to understand how dispersion diagrams of a periodic structure can be calulated? of course, the calculation methods(PWM,FDTD,FEM,...) are not important in this part.

I have soem experience to simulate periodic structures by FDTD. But,I have encountered some problems to obtain dispersion diagram. That's why I dont know exactly how I can relate fourier transform results to wave number while I have got samples in different points for many time steps.

Any suggestion would be helpful.
Back to top
savedadogs



Joined: 11 Dec 2003
Posts: 95
Helped: 11
Location: California


Post18 Nov 2006 22:46   

matlab-dispersion relation


This is a good tutorial on what a dispersion diagram is and how to generate it:

http://www.emtalk.com/tut_2.htm
Back to top
luoxj2005



Joined: 17 Nov 2006
Posts: 4


Post20 Nov 2006 16:47   

meep dispersion


I also have such problem.Does anyone konw how to calculate dispersion diagrams by FDTD in matlab.
Back to top
foh-ton



Joined: 19 Nov 2006
Posts: 1
Helped: 1


Post22 Nov 2006 16:06   

dispersion diagramm wiki


Hi, essentially a dispersion diagram is a plot of the wavelength in the dispersive material, lambda, against the wavelength in free space, lambda0.

In a periodic system it becomes simply a plot of phase (0->pi) vs. frequency.
Outside of this range the system is degenerate
omega(phase)=omega(phase+N*pi), for N=±integer.

Conventionally (in photonic crystal literature), this is plotted as a graph with wavevector as the abscissa and frequency as the ordinate.
The frequency, omega, of the wave is constant in all media.
The wavevector, k, changes as k=omega*n/c, where c is the speed of light in vacuum and n is the phase index of the wave.
The phase velocity v_p=omega/k=c/n is the gradient of a line passing through the origin, intersecting the point (k,omega).
The local slope of the dispersion diagram yields the group velocity, v_g=(omega)/dk.

Often, due to the scalability of Maxwell's equations, these units are normalised.
omega -> u (normalised frequency dimensionless), u=omega*a/2/pi/c=a/lambda0. Where a is period.
k -> is expressed in units of pi/a. k=2*pi*n/lambda0=2*pi/lambda

For the simplest implementations of these techniques:
In FDTD and PWM the wavevector is the independent variable and the frequency the eigenvalue.
In TMM, EME and FEM the frequency is the independent variable and wavevector is the eigenvalue.

The periodic boundary condition is extremely simple to implement in a 1D FDTD system and follows:
P. Harms, R. Mittra and W. Ko, "Implementation of the periodic boundary condition in the finite-difference time-domain algorithm for FSS structures,"
IEEE Trans. on Antennas and Propagation, vol. 42, no. 9, pp. 1317-1324, September 1994.

GRID STRUCTURE

h1...........................hN+1
|_|_|_|_|_|_|_|_|_|_|
..|_|_|_|_|_|_|_|_|_|
.e1.........................eN

..¦---..period=a... ---¦
..0........................(N-1)dx

The first and last e values sit on the periodic boundary (at real space positions z=0, and z=(N-1)dx) and the first and last h values (sit at z=-dx/2 and z=(N-1)dx+dx/2) outside the period.

ALGORITHM
Firstly we deal with the case of k=0.
The fields at periodic intervals are identical.
1: e1:eN are calculated from diff(h1:hN+1), and in turn
2: h2:hN-1 are calculated from diff(e1:eN),
3: the values outside the period are then set hN+1=h2 and h1=hN
this is equivalent to a loop, i.e. joining the two ends of the simulation together.

Secondly we deal with the case of k=pi/a.
The fields at periodic intervals are opposites. The Periodic boundaries are now updated using,
3: hN+1=-h2 and h1=-hN

The fields in the periodic system, at k=0 are perfectly in phase with the lattice.
The fields at k=pi/a are pi out of phase with the lattice.
These two separate k points can be calculated using a single real field.

For values of k between 0 and pi, we require two fields which are pi out of phase in order to correctly apply the phase shift at the boundary.
This is obviously twice as computationally expensive as for the two high symmetry points.

e and h are now complex variables (for ease of storage, and convenience).
The Periodic boundaries are now updated using,
3: hN+1= h2 * exp(j*k*a), h1 = hN * exp(-j*k*a)

These reduce to single field form at k=0 and pi, (their computation is unnecessarily expensive in 2D and 3D).

I've listed this as Matlab code, (I've tested it also in Octave) as the notation is concise.
We divide the period into N Ex and N Hy components, as the HN+1 form above is a little overzealous.
We study an infinitesimally small periodic index perturbation, ie. fill the space with air (n=1).
The resulting folding is an artefact of the model.

Note:
h1.......................hN
|_|_|_|_|_|_|_|_|_|_
..|_|_|_|_|_|_|_|_|_|
.e1........................eN

The fields are stored at various points as a function of time, for each k, and then FFTing them gives us the frequencies.
For the source choose a Gaussian modulated cosine.
Launch and store points can preferentially excite/detect different modes with varying efficiency.

So to plot the dispersion diagram using FDTD,
a: Set phase (in discrete steps, 0->pi) <--¬
b: iterate steps 1,2,3 for sufficient time __|
c: FFT stored field values and plot.

If a particular resonance occurs at say frequency ii in the fft spectrum.
Its normalised frequency is u=a*[ii-1]./(dt*(timemax-1)).
Range u=a*[0:timemax-1]./(dt*(timemax-1))
Resolution is limited by length of simulation.
A more advanced method for determining the frequency eigenvalues is the filter diagonalisation method (FDM).
A free (linux based) FDTD software package and FDM program are available at:

http://ab-initio.mit.edu/wiki/index.php/Meep
http://ab-initio.mit.edu/wiki/index.php/Harminv

Hope this helps!
Back to top
Google
AdSense
Google Adsense




Post22 Nov 2006 16:06   

Ads







Sorry, but you need login in to view this attachment

Back to top
yaswanthr



Joined: 22 Dec 2006
Posts: 8
Helped: 2


Post23 Dec 2006 1:16   

dispersion diagrams


Hey,

u can use MoM method, attached is a paper regarding that

Yash



Sorry, but you need login in to view this attachment

Back to top
Arabic versionBulgarian versionCatalan versionCzech versionDanish versionGerman versionGreek versionEnglish versionSpanish versionFinnish versionFrench versionHindi versionCroatian versionIndonesian versionItalian versionHebrew versionJapanese versionKorean versionLithuanian versionLatvian versionDutch versionNorwegian versionPolish versionPortuguese versionRomanian versionRussian versionSlovak versionSlovenian versionSerbian versionSwedish versionTagalog versionUkrainian versionVietnamese versionChinese version
Post new topic  Reply to topic    EDAboard.com Forum Index -> Electromagnetic Design and Simulation -> Help : Calculation of Dispersion Diagram
Page 1 of 1 All times are GMT + 1 Hour
Similar topics:
Dispersion diagram HELP (1)
Dispersion diagram to attenuation diagram (1)
Brillouin/Dispersion Diagram (1)
Dispersion diagram in matlab (2)
Spurious solutions on Dispersion Diagram (2)
Dispersion diagram from HFSS.. (2)
HFSS - Dispersion diagram of Sievenpiper's structure (30)
1-D dispersion diagram of Sievenpiper structure by HFSS (1)
CST: Dispersion diagram of LH-transmissoin line (3)
Generating Dispersion diagram for EBG in CST MWS (29)


Abuse || Administrator || Moderators || Support us || sitemap
topic RSS